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

113 lines
1.9 KiB
SCSS
Raw Normal View History

2014-04-06 14:14:03 +00:00
/*
Navigation
*/
#menu {
@include span-columns(12);
2014-04-13 11:16:51 +00:00
font-family: $montserrat;
height: em(60);
max-height: em(60);
2014-04-18 00:07:07 +00:00
margin-top: - em(60);
2014-04-06 14:14:03 +00:00
nav {
@include outer-container;
}
}
ul.navigation {
position: relative;
margin: 0;
padding: 0;
list-style: none;
float: left;
2014-04-18 00:07:07 +00:00
width: 100%;
background: transparent;
2014-04-06 14:14:03 +00:00
> li {
float: left;
2014-04-18 00:07:07 +00:00
width: $max-width/7;
border-right: em(1) solid transparent;
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;
height: em(60);
line-height: em(16);
padding: em(22);
2014-04-06 14:14:03 +00:00
float: left;
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;
}
}
2014-04-18 00:07:07 +00:00
&:last-child {
border-right: 0;
}
2014-04-06 14:14:03 +00:00
&.icon {
> a {
font-size: em(24);
line-height: em(24);
padding: em(18);
2014-04-06 14:14:03 +00:00
i {
width: em(24);
height: em(24);
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 {
display: block;
position: absolute;
top: em(60);
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 {
2014-04-18 00:07:07 +00:00
border-bottom: em(1) solid $navbar-secondary;
2014-04-06 14:14:03 +00:00
&:first-child {
2014-04-18 00:07:07 +00:00
border-top: em(1) 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;
height: em(60);
line-height: em(16);
padding: em(22);
2014-04-06 14:14:03 +00:00
color: $navbar-text;
}
2014-04-18 00:07:07 +00:00
&:hover a {
background: $light-blue;
}
2014-04-06 14:14:03 +00:00
}
}
}
}
}
}