angular-cn/public/resources/css/module/_main-nav.scss

128 lines
2.5 KiB
SCSS
Raw Normal View History

2015-02-19 20:13:47 -05:00
.main-nav {
2015-02-24 09:38:30 -05:00
height: 56px;
min-height: 56px;
2015-02-25 10:15:46 -05:00
padding: 0px ($unit * 2);
box-shadow: 0px 2px 5px 0 rgba($coal, 0.26);
2015-02-24 09:38:30 -05:00
h1 {
2015-02-27 10:17:29 -05:00
margin: 0px ($unit * 9) 0px 0px;
2015-02-24 09:38:30 -05:00
padding: 0px;
2015-02-25 10:15:46 -05:00
height: 36px;
2015-02-28 11:11:13 -05:00
width: 136px;
2015-02-25 10:15:46 -05:00
float: left;
2015-02-24 16:44:23 -05:00
a {
2015-02-27 10:17:29 -05:00
background: url('/resources/images/logos/standard/logo-nav.png') 0px 8px no-repeat;
2015-02-24 16:44:23 -05:00
display: block;
2015-02-27 10:17:29 -05:00
height: 56px;
2015-02-25 10:15:46 -05:00
width: 135px;
2015-02-24 16:44:23 -05:00
overflow: hidden;
text-indent: -3000px;
}
2015-02-24 09:38:30 -05:00
}
2015-02-19 20:13:47 -05:00
ul {
list-style-type: none;
margin: 0px;
padding: 0px;
li {
2015-02-25 10:15:46 -05:00
margin: 0px 0px 0px 0px;
2015-03-04 10:13:59 -05:00
}
2015-03-04 23:27:30 -05:00
.main-nav-button {
@media handheld and (max-width: $phone-breakpoint),
screen and (max-device-width: $phone-breakpoint),
screen and (max-width: $tablet-breakpoint) {
display: block;
float: none;
line-height: $unit * 6;
text-align: left;
font-size: 14px;
padding: 0px ($unit * 5);
&.has-icon {
padding: 0px ($unit * 5);
position: static;
}
.icon {
display: none;
}
}
}
2015-03-04 10:13:59 -05:00
@media handheld and (max-width: $phone-breakpoint),
screen and (max-device-width: $phone-breakpoint),
screen and (max-width: $tablet-breakpoint) {
box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
float: none;
position: absolute;
top: 0px;
right: $unit;
2015-03-04 23:27:30 -05:00
z-index: $layer-6;
background: $ocean;
2015-03-04 10:13:59 -05:00
display: none;
li {
display: block;
float: none;
}
2015-02-19 20:13:47 -05:00
}
}
2015-02-24 09:38:30 -05:00
2015-03-04 23:27:30 -05:00
// NAV BUTTON STYLES
2015-02-25 10:15:46 -05:00
.main-nav-button {
line-height: 56px;
display: inline-block;
color: $snow;
text-decoration: none;
padding: 0px ($unit * 2);
text-transform: uppercase;
font-family: $brand-font;
font-weight: 300;
font-size: 16px;
2015-03-04 23:27:30 -05:00
border: none;
background: none;
border-radius: 0;
position: relative;
2015-02-25 10:15:46 -05:00
&:hover {
background: $ocean;
}
// ICONS
&.has-icon {
position: relative;
padding-left: 30px + ($unit * 2);
}
.icon {
font-size: 22px;
position: absolute;
top: 15px;
left: ($unit * 2);
z-index: $layer-1;
}
2015-03-04 23:27:30 -05:00
}
// DROPDOWN TRIGGER BUTTON
.main-nav-mobile-trigger {
display: none;
padding-right: 30px + ($unit * 2);
.icon {
left: auto;
right: ($unit * 2);
opacity: .56;
}
2015-02-25 10:15:46 -05:00
2015-03-04 10:13:59 -05:00
@media handheld and (max-width: $phone-breakpoint),
screen and (max-device-width: $phone-breakpoint),
screen and (max-width: $tablet-breakpoint) {
2015-03-04 23:27:30 -05:00
display: inline-block;
float: right;
2015-03-04 10:13:59 -05:00
}
2015-02-24 09:38:30 -05:00
}
2015-02-19 20:13:47 -05:00
}