mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 01:40:10 +00:00
17 lines
303 B
SCSS
17 lines
303 B
SCSS
|
a {
|
||
|
border-bottom: $dark-grey solid 0.1em;
|
||
|
color: $black;
|
||
|
font-family: $ext-sans;
|
||
|
margin: 1rem 0;
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
border-bottom: $primary-color solid 0.1rem;
|
||
|
}
|
||
|
&:focus {
|
||
|
outline: pxToRem(3) solid $primary-color;
|
||
|
outline-offset: pxToRem(5);
|
||
|
}
|
||
|
}
|