2015-12-12 01:33:28 -05:00
|
|
|
nav.navbar {
|
2016-01-26 23:20:08 -05:00
|
|
|
height: @nav_height;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
padding-right: 10px;
|
2016-01-28 22:28:05 -05:00
|
|
|
background-color: @c_base;
|
2015-12-12 01:38:44 -05:00
|
|
|
border: none;
|
2015-12-12 02:02:43 -05:00
|
|
|
border-radius: 0px;
|
2015-07-16 22:30:53 -04:00
|
|
|
z-index: 1;
|
2016-01-28 22:28:05 -05:00
|
|
|
@media (max-width: @grid-float-breakpoint-max) { height: @mobile_nav_height; }
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2015-12-12 01:33:28 -05:00
|
|
|
.navbar-logo {
|
2016-01-28 22:28:05 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
left: 10px;
|
|
|
|
width: (@nav_height - 10);
|
|
|
|
height: (@nav_height - 10);
|
2015-12-12 01:33:28 -05:00
|
|
|
background-image: url('/img/logo.png');
|
|
|
|
background-size: contain;
|
|
|
|
background-position: center center;
|
|
|
|
background-repeat: no-repeat;
|
2016-01-26 23:20:08 -05:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
@media (max-width: @grid-float-breakpoint-max) {
|
2016-01-28 22:28:05 -05:00
|
|
|
width: (@mobile_nav_height - 10);
|
|
|
|
height: (@mobile_nav_height - 10);
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
2015-12-12 01:33:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#navbar {
|
|
|
|
box-shadow: none;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
ul.nav {
|
|
|
|
li {
|
|
|
|
a {
|
2016-01-26 23:20:08 -05:00
|
|
|
padding: 0px 15px;
|
|
|
|
user-select: none;
|
2015-12-12 01:33:28 -05:00
|
|
|
color: @c_text_light;
|
|
|
|
text-decoration: none;
|
2016-01-26 23:20:08 -05:00
|
|
|
text-transform: uppercase;
|
|
|
|
line-height: @nav_height;
|
2016-01-28 22:28:05 -05:00
|
|
|
font-size: 24px;
|
2015-12-12 01:33:28 -05:00
|
|
|
}
|
2016-01-26 23:20:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: @grid-float-breakpoint-max) {
|
|
|
|
position: relative;
|
|
|
|
bottom: 4px;
|
|
|
|
width: 100vw;
|
|
|
|
padding-bottom: 5px;
|
2016-01-28 22:28:05 -05:00
|
|
|
background-color: @c_base;
|
2016-01-26 23:20:08 -05:00
|
|
|
|
|
|
|
ul.nav li a {
|
|
|
|
line-height: 40px;
|
|
|
|
font-size: 18px;
|
2015-12-12 01:33:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-toggle {
|
2016-01-26 23:20:08 -05:00
|
|
|
position: relative;
|
|
|
|
bottom: 2px;
|
|
|
|
left: 20px;
|
2015-12-12 01:33:28 -05:00
|
|
|
border: none;
|
|
|
|
&, &:hover, &:focus { background-color: transparent; }
|
2016-01-26 23:20:08 -05:00
|
|
|
|
|
|
|
.icon-bar {
|
|
|
|
width: 27px;
|
|
|
|
height: 4px;
|
|
|
|
background-color: @c_text_light;
|
|
|
|
}
|
2016-01-28 22:28:05 -05:00
|
|
|
}
|
2015-07-16 22:30:53 -04:00
|
|
|
}
|