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.
52 lines
693 B
SCSS
52 lines
693 B
SCSS
5 years ago
|
nav {
|
||
|
display:flex;
|
||
|
flex-direction:column;
|
||
|
width:100%;
|
||
|
background:$nav-background-primary;
|
||
|
color:$nav-color;
|
||
|
border-bottom:$nav-border;
|
||
|
|
||
|
h1 {
|
||
|
margin:$nav-h1-margin;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
display:flex;
|
||
|
margin:0;
|
||
|
padding:0;
|
||
|
list-style-type:none;
|
||
|
|
||
|
li {
|
||
|
|
||
|
a {
|
||
|
padding:1em;
|
||
|
display:block;
|
||
|
text-decoration:none;
|
||
|
|
||
|
&, &:active, &:visited {
|
||
|
color:$nav-color;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
color:$nav-anchor-hover-color;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.mainnav {
|
||
|
display:flex;
|
||
|
justify-content:space-between;
|
||
|
align-items:flex-end;
|
||
|
width:$recipe-wrap;
|
||
|
margin:0 auto;
|
||
|
}
|
||
|
|
||
|
.subnav {
|
||
|
display:flex;
|
||
|
justify-content:center;
|
||
|
background:$nav-background-secondary;
|
||
|
}
|
||
|
}
|
||
|
|