You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
354 B
SCSS
22 lines
354 B
SCSS
@use '../utilities/main_utilities' as *;
|
|
|
|
/* Links */
|
|
a{
|
|
color: $color-link;
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
text-decoration: underline;
|
|
|
|
@include color-scheme(dark) {
|
|
color: $color-link--dark;
|
|
}
|
|
}
|
|
|
|
a:hover {
|
|
filter: brightness($hover-brightness);
|
|
}
|
|
|
|
a:active {
|
|
filter: brightness($active-brightness);
|
|
}
|