You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

319 lines
5.8 KiB

11 years ago
@import "fonts";
11 years ago
@import "mixins";
11 years ago
body, html {
11 years ago
font-size: 14px;
11 years ago
line-height: 1.5;
font-family: OpenSans, "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
11 years ago
font-weight: 300;
height: 100%;
11 years ago
margin: 0;
padding: 0;
11 years ago
background: $menu_color;
11 years ago
overflow: hidden;
}
body {
@include flexbox();
flex-flow: row nowrap;
}
a {
text-decoration: none;
}
11 years ago
input, textarea, select {
font-size: 1em;
font-weight: 300;
11 years ago
padding: $padding/2;
background: $background_color;
border: 1px solid #f2f2f2;
11 years ago
}
11 years ago
/* Header */
11 years ago
.header {
11 years ago
width: $header_width;
min-width: $header_width;
position: relative;
11 years ago
a {
color: #FFF;
letter-spacing: 1px;
}
.navigation {
.logo {
11 years ago
background: $couch_color;
11 years ago
display: block;
text-align: center;
11 years ago
font-family: Lobster, serif;
11 years ago
color: #FFF;
font-size: 38px;
11 years ago
line-height: $header_height;
height: $header_height;
11 years ago
span:nth-child(odd){
display: block;
}
span:nth-child(even){
display: none;
}
}
11 years ago
11 years ago
ul {
padding: 0;
margin: 0;
li a {
11 years ago
padding: $padding/2 $padding;
11 years ago
display: block;
}
}
}
11 years ago
.menu, .search_form, .notification_menu {
position: absolute;
11 years ago
z-index: 200;
11 years ago
bottom: $padding / 3;
width: 44px;
height: 44px;
> a {
display: inline-block;
height: 100%;
width: 100%;
text-align: center;
line-height: 44px;
}
}
.notification_menu {
left: 50%;
@include translateX(-50%);
.button:before {
font-size: 20px;
top: -2px;
}
ul {
min-height: 60px;
max-height: 300px;
overflow: auto;
&:empty:after {
content: 'No notifications (yet)';
width: 100%;
position: absolute;
11 years ago
line-height: 60px;
11 years ago
font-size: 15px;
font-style: italic;
opacity: .4;
11 years ago
left: $padding * 2;
11 years ago
}
&:empty:before {
content: '\e808';
font-family: "icons";
11 years ago
height: 100%;
line-height: 60px;
margin-left: $padding;
text-align: center;
opacity: .4;
11 years ago
}
}
}
.menu {
left: $padding / 3;
.button:before {
font-size: 20px;
top: -2px;
}
}
.search_form {
right: $padding / 3;
}
.more_menu {
.wrapper {
bottom: 0;
left: 44px;
right: auto;
}
}
11 years ago
}
11 years ago
/* Content */
11 years ago
.content {
@include flex(1 auto);
11 years ago
background: $background_color;
11 years ago
border-radius: 3px 0 0 3px;
overflow: hidden;
h1, h2, h3 {
padding: 0;
margin: 0;
}
11 years ago
.pages {
height: 100%;
11 years ago
width: 100%;
11 years ago
overflow: hidden;
position: relative;
11 years ago
}
.footer {
position: fixed;
bottom: 0;
11 years ago
height: $padding;
11 years ago
width: 100%;
11 years ago
}
}
11 years ago
/* Page */
11 years ago
.page {
11 years ago
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
11 years ago
display: none;
11 years ago
padding: $padding 0;
11 years ago
overflow: auto;
11 years ago
11 years ago
&.active {
display: block;
}
11 years ago
.navigation {
@include flexbox();
position: fixed;
top: 0;
11 years ago
height: $header_height;
left: $header_width;
11 years ago
right: 0;
background: $background_color;
border-radius: 3px 0 0 3px;
11 years ago
z-index: 100;
ul {
@include flex(1 auto);
list-style: none;
li {
display: inline-block;
a {
font-size: 24px;
11 years ago
line-height: $header_height;
11 years ago
padding: $padding;
color: rgba(0,0,0,.5);
}
}
11 years ago
.active a {
color: #000;
}
11 years ago
}
}
11 years ago
}
11 years ago
/* Page levels */
@for $i from 1 through 4 {
.level_#{$i} {
z-index: #{$i * 10};
}
11 years ago
}
11 years ago
/* Menu basis */
.more_menu {
position: relative;
line-height: 1em;
.button {
font-size: 24px;
cursor: pointer;
display: inline-block;
&:before {
position: relative;
}
}
.wrapper {
display: none;
position: absolute;
width: 320px;
right: 0;
background: $background_color;
z-index: 5000;
11 years ago
box-shadow: 0 0 4px rgba(0,0,0,.1);
11 years ago
&:before {
@include transform(rotate(45deg) translateY(-60%));
content: '';
display: block;
position: absolute;
height: 20px;
width: 20px;
background: $background_color;
left: -10px;
bottom: 2px;
z-index: 1;
opacity: 0;
}
ul {
position: relative;
z-index: 2;
overflow: hidden;
}
11 years ago
ul li {
11 years ago
display: block;
line-height: 1em;
a {
display: block;
color: $text_color;
padding: $padding/4 $padding/2;
11 years ago
font-size: 1em;
line-height: 22px;
11 years ago
}
&:first-child a {
padding-top: $padding/2;
}
&:last-child a {
padding-bottom: $padding/2;
}
}
}
&.show {
.wrapper {
display: block;
&:before {
opacity: 1;
}
}
}
11 years ago
}