2015-08-27 02:42:42 +08:00
|
|
|
#hamburger-menu.slide-in {
|
2015-08-26 00:50:19 +08:00
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
2015-08-27 02:42:42 +08:00
|
|
|
.hamburger-body {
|
|
|
|
position: absolute;
|
|
|
|
top: 40px;
|
|
|
|
bottom: 37px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#hamburger-menu.drop-down {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
#hamburger-menu {
|
2015-08-27 02:50:15 +08:00
|
|
|
border: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
|
|
|
box-shadow: 0 2px 2px rgba(0,0,0, .25);
|
2015-08-27 02:42:42 +08:00
|
|
|
background-color: $secondary;
|
|
|
|
z-index: 1100;
|
|
|
|
overflow: none;
|
2015-08-26 00:50:19 +08:00
|
|
|
padding: 0.5em 0.5em 0.5em 0.5em;
|
|
|
|
width: 300px;
|
|
|
|
|
|
|
|
.close-hamburger {
|
|
|
|
float: right;
|
|
|
|
color: dark-light-choose(scale-color($header_primary, $lightness: 50%), $header_primary);
|
|
|
|
font-size: 1.5em;
|
2015-08-26 11:44:48 +08:00
|
|
|
margin-right: -10px;
|
2015-08-26 00:50:19 +08:00
|
|
|
margin-top: 0.1em;
|
2015-08-26 11:44:48 +08:00
|
|
|
padding: 0 4 4 4px;
|
|
|
|
z-index: 9999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hamburger-header {
|
|
|
|
position: absolute;
|
|
|
|
right: 20px;
|
|
|
|
}
|
|
|
|
|
2015-08-26 00:50:19 +08:00
|
|
|
|
2015-08-26 11:10:50 +08:00
|
|
|
|
2015-08-26 00:50:19 +08:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.location-links li, li.heading {
|
|
|
|
a {
|
|
|
|
padding: 0.5em;
|
|
|
|
display: block;
|
|
|
|
&:hover {
|
|
|
|
background-color: dark-light-diff($highlight, $secondary, 50%, -55%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li.category-link {
|
|
|
|
float: left;
|
|
|
|
background-color: transparent;
|
|
|
|
width: 45%;
|
|
|
|
margin: 5px 5px 0 8px;
|
|
|
|
.box {margin-top: 0;}
|
|
|
|
.badge-notification {
|
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
|
|
background-color: transparent;
|
|
|
|
vertical-align: top;
|
|
|
|
padding: 5px 5px 2px 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// note these topic counts only appear for anons in the category hamburger drop down
|
|
|
|
b.topics-count {
|
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
2015-08-27 02:42:42 +08:00
|
|
|
.hamburger-body {
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
2015-08-26 00:50:19 +08:00
|
|
|
}
|
2015-08-27 02:42:42 +08:00
|
|
|
|