mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-10 10:16:21 +02:00
34 lines
678 B
SCSS
34 lines
678 B
SCSS
@use "../../../assets/scss/variables" as *;
|
|
@use "../../../assets/scss/mixins" as *;
|
|
|
|
.menu {
|
|
.list {
|
|
list-style: none;
|
|
@include margin-equal(0);
|
|
@include padding-equal(0);
|
|
|
|
.item {
|
|
@include margin(0.5, 0);
|
|
@include padding-equal(0);
|
|
|
|
.link {
|
|
border: 0;
|
|
color: $typographic-base-font-color;
|
|
font-size: $typographic-base-font-size;
|
|
font-weight: normal;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
border-bottom: 1px solid $color-primary;
|
|
color: $color-primary;
|
|
}
|
|
|
|
&.active {
|
|
border-bottom: 1px solid $color-base;
|
|
color: $color-base;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|