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

129 lines
2.4 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-05-03 01:21:29 +00:00
font-family: $header-font-family;
height: $navigation-height;
2014-05-03 01:21:29 +00:00
margin-top: -50px;
background: image-url('layout/nav-background.png') top center repeat-x;
height: 100px;
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;
max-width: $max-width;
max-height: $navigation-height;
2014-05-03 01:21:29 +00:00
margin-top: 5px;
2014-04-06 14:14:03 +00:00
> li {
float: left;
2014-05-03 01:21:29 +00:00
border: none;
a {
font-weight: 400;
font-size: 15px;
height: $navigation-height;
line-height: $navigation-height;
2014-05-03 01:21:29 +00:00
padding: 0 20px;
color: #5f5f5f;
text-transform: uppercase;
border-top: 1px solid #54585b;
&:before,
&:after {
@include box-sizing(border-box);
display: block;
content: '';
position: absolute;
width: 1px;
height: 100%;
top: 0;
}
&:before {
@include linear-gradient(#54585b, #15181a);
left: 0;
}
&:after {
@include linear-gradient(#54585b, #15181a);
right: -1px;
}
}
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
float: left;
position: relative;
2014-05-03 01:21:29 +00:00
border-top: 1px solid #266d98;
2014-04-06 14:14:03 +00:00
&:hover,
&.active {
2014-05-03 01:21:29 +00:00
@include background-image(radial-gradient(50% -10%, ellipse cover, transparentize(#2abdfb, 0.6), transparent 60%));
color: #3dcfff;
2014-05-03 01:21:29 +00:00
&:before,
&:after {
@include linear-gradient(#266d98, #15181a);
z-index: 100;
}
2014-04-06 14:14:03 +00:00
}
}
&.dropdown {
position: relative;
2014-04-06 14:14:03 +00:00
ul {
position: absolute;
box-shadow: $content-shadow;
visibility: hidden;
pointer-events: none;
opacity: 0;
2014-04-06 14:14:03 +00:00
z-index: 10;
top: $navigation-height;
left: 0;
min-width: 100%;
list-style: none;
padding: 0;
margin: 0;
2014-04-06 14:14:03 +00:00
}
&:hover {
ul {
2014-05-03 01:21:29 +00:00
display: none;
opacity: 1;
pointer-events: auto;
2014-04-06 14:14:03 +00:00
li {
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 {
2014-05-03 01:21:29 +00:00
2014-04-18 00:07:07 +00:00
}
2014-04-06 14:14:03 +00:00
}
}
}
}
}
}