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