mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 17:37:36 +01:00
16 lines
288 B
SCSS
16 lines
288 B
SCSS
a {
|
|
text-decoration: none;
|
|
color: $color-text-link;
|
|
|
|
&:visited { color: $color-text-link-visited; }
|
|
|
|
&:hover,
|
|
&:focus { color: $color-text-link-hover; }
|
|
|
|
&:focus { @extend %tab-focus; }
|
|
}
|
|
|
|
%bold-elements { font-weight: $font-weight-bold; }
|
|
|
|
strong { @extend %bold-elements; }
|