mirror of
https://github.com/avitex/avitex.github.io
synced 2024-11-16 17:39:57 +00:00
38 lines
609 B
SCSS
38 lines
609 B
SCSS
|
.site-nav {
|
||
|
ul {
|
||
|
padding: 0;
|
||
|
list-style: none;
|
||
|
text-transform: uppercase;
|
||
|
letter-spacing: 0.1rem;
|
||
|
font-weight: bold;
|
||
|
font-family: $heading-font;
|
||
|
font-size: 0.8rem;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
display: inline-block;
|
||
|
padding: 0 0.2rem;
|
||
|
|
||
|
color: $grey;
|
||
|
|
||
|
& > a.active {
|
||
|
color: $white;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: inherit;
|
||
|
border: none;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.main-menu {
|
||
|
font-size: 0.75rem;
|
||
|
}
|
||
|
|
||
|
.sub-menu {
|
||
|
color: $grey;
|
||
|
font-size: 0.65rem;
|
||
|
}
|
||
|
}
|