Link
Links are used primarily as a navigational element. Links may also change what or how data is displayed (view more, show all). If the action taken by the user will change or manipulate data, use a button.
Make sure always to add a title attribute to links.
SASS Styles
To get the default link colors use the following variables:
a {
text-decoration: none;
color: $link-color;
&:hover {
color: $link-hover-color;
}
}