mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 18:37:35 +01:00
14 lines
251 B
SCSS
14 lines
251 B
SCSS
a {
|
|
text-decoration: none;
|
|
color: darken($color-text-link, 10%);
|
|
|
|
&:hover,
|
|
&:focus { color: $color-text-link-hover; }
|
|
|
|
&:focus { @extend %tab-focus; }
|
|
}
|
|
|
|
%bold-elements { font-weight: $font-weight-bold; }
|
|
|
|
strong { @extend %bold-elements; }
|