mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 18:37:35 +01:00
19 lines
326 B
SCSS
19 lines
326 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,
|
||
|
strong { font-weight: $font-weight-bold; }
|