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.

151 lines
2.6 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;
height: 100%;
11 years ago
margin: 0;
padding: 0;
11 years ago
background: $menu_color;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
11 years ago
overflow: hidden;
}
body {
@include flexbox();
flex-flow: row nowrap;
}
a {
text-decoration: none;
}
.header {
width: 130px;
font-weight: 200;
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;
}
}
}
}
.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: auto;
overflow-x: hidden;
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
position: relative;
11 years ago
display: none;
11 years ago
padding: $padding 0;
.page {
margin-top: $header-height - $padding;
z-index: 10;
padding: 0;
}
11 years ago
11 years ago
&.active {
display: block;
}
11 years ago
.navigation {
@include flexbox();
position: fixed;
top: 0;
height: $header-height;
left: 130px;
right: 0;
background: $background_color;
z-index: 100;
ul {
@include flex(1 auto);
list-style: none;
li {
display: inline-block;
a {
font-size: 24px;
line-height: $header-height;
padding: $padding;
color: rgba(0,0,0,.5);
font-weight: 300;
&.active {
color: rgba(0,0,0,1);
}
}
}
}
}
.alph_nav {
display: none; // Hide for now
}
11 years ago
}