dash-website/_sass/_nav.scss
Perry Woodin fd43071a3c Navigation
- Split the navigation out to separate files.
- Set the navigation items to i18n strings.
- Updated the overlay css to accommodate the number of nav items.
2016-07-12 10:21:59 -04:00

32 lines
No EOL
525 B
SCSS

#top {
border-bottom: 1px solid $white;
text-align: left;
margin-top: 30px;
margin-bottom: 40px;
.logo {
width: 180px;
height: auto;
display: inline-block;
}
nav {
float: right;
text-align: right;
li {
display: inline;
margin-left: 10px;
a {
color: rgba($black, 0.9);
text-transform: uppercase;
text-decoration: none;
font-size: 16px;
font-family: 'montserratregular';
&:hover {
color: rgba($black, 1.0);
}
}
}
.status {
color: $blue !important;
}
}
}