<a href="url" title="Link title" target="_blank" class="link " property="url">Link text</a>
<a href="{{ urlType }}{{ url }}" title="{{ title }}" target="{{ target }}" class="link {{ active }} {{ modifier }} {{ class }}" property="url">{{ text }}</a>
{
"url": "url",
"text": "Link text",
"target": "_blank",
"title": "Link title"
}
/*
* Element: Link
*/
/*Setting document variables*/
:root {
--link-color: var(--color-primary);
--link-font-family: var(--base-font-family);
}
/*Link style*/
.link {
color: var(--link-color);
font-family: var(--link-font-family);
&:hover,
&:focus {
color: shade(var(--link-color), 10%);
outline: none;
}
}
There are no notes for this item.