ensl.org/app/assets/stylesheets/layout/_navigation.scss

145 lines
2.7 KiB
SCSS
Raw Normal View History

2014-04-06 14:14:03 +00:00
/*
Navigation
*/
$navigation-height: 50px;
2014-04-06 14:14:03 +00:00
#menu {
@include span-columns(12);
2014-04-13 11:16:51 +00:00
font-family: $montserrat;
height: $navigation-height;
margin-top: - $navigation-height;
background: $blue;
2014-04-06 14:14:03 +00:00
nav {
@include outer-container;
}
}
ul.navigation {
z-index: 100;
2014-04-06 14:14:03 +00:00
position: relative;
margin: 0;
padding: 0;
list-style: none;
float: right;
2014-04-18 00:07:07 +00:00
background: transparent;
max-width: $max-width;
max-height: $navigation-height;
2014-04-06 14:14:03 +00:00
> li {
float: left;
border-left: 1px solid $dark-blue;
2014-04-06 14:14:03 +00:00
.count {
position: absolute;
top: $navigation-height/2 - ($navigation-height/2)/2;
right: 12px;
border-radius: $navigation-height/2;
background-color: $light-blue;
display: inline-block;
color: white;
line-height: $navigation-height/2;
padding: 0 8px;
font-size: 12px;
font-weight: bold;
height: $navigation-height/2;
}
a {
font-weight: 400;
font-size: 15px;
height: $navigation-height;
line-height: $navigation-height;
padding: 0 50px 0 20px;
}
2014-04-06 14:14:03 +00:00
> a {
2014-04-18 00:07:07 +00:00
width: 100%;
2014-04-06 14:14:03 +00:00
color: white;
float: left;
position: relative;
2014-04-18 00:07:07 +00:00
background-color: $navbar-primary;
2014-04-06 14:14:03 +00:00
&:hover,
&.active {
background-color: $navbar-secondary;
.count {
background-color: lighten($light-blue, 20);
}
2014-04-06 14:14:03 +00:00
}
&.gathers {
padding-right: 70px;
}
2014-04-06 14:14:03 +00:00
}
2014-04-18 00:07:07 +00:00
&:last-child {
border-right: 1px solid $dark-blue;
2014-04-18 00:07:07 +00:00
}
2014-04-06 14:14:03 +00:00
&.icon {
i {
color: white;
max-height: $navigation-height;
position: absolute;
top: 0;
right: 0;
font-size: 18px;
line-height: 1em;
padding: $navigation-height/3;
2014-04-06 14:14:03 +00:00
}
}
&.dropdown {
ul {
display: none;
z-index: 10;
}
&:hover {
position: relative;
2014-04-06 14:14:03 +00:00
ul {
box-shadow: $content-shadow;
2014-04-06 14:14:03 +00:00
display: block;
position: absolute;
top: $navigation-height;
2014-04-06 14:14:03 +00:00
left: 0;
min-width: 100%;
2014-04-18 00:07:07 +00:00
background-color: $navbar-primary;
2014-04-06 14:14:03 +00:00
list-style: none;
padding: 0;
margin: 0;
li {
border-bottom: 1px solid $navbar-secondary;
2014-04-06 14:14:03 +00:00
&:first-child {
border-top: 1px solid $navbar-secondary;
}
2014-04-06 14:14:03 +00:00
&:last-child {
border-bottom: none;
}
a {
white-space: nowrap;
2014-04-06 14:14:03 +00:00
display: block;
color: $navbar-text;
padding: 0 20px;
2014-04-06 14:14:03 +00:00
}
2014-04-18 00:07:07 +00:00
&:hover a {
background: $light-blue;
}
2014-04-06 14:14:03 +00:00
}
}
}
}
}
}