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.

106 lines
1.5 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: #111;
11 years ago
-webkit-font-smoothing: subpixel-antialiased;
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 {
background: #ac0000;
display: block;
text-align: center;
font-family: Lobster;
color: #FFF;
font-size: 38px;
line-height: 80px;
height: 80px;
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 {
padding: 10px 20px;
display: block;
}
}
}
}
.content {
@include flex(1 auto);
background: #FFF;
border-radius: 3px 0 0 3px;
overflow: hidden;
h1, h2, h3 {
padding: 0;
margin: 0;
}
11 years ago
.pages {
height: 100%;
widows: 100%;
}
.footer {
position: fixed;
bottom: 0;
height: 20px;
width: 100%;
11 years ago
}
}
11 years ago
.page {
display: none;
padding: 20px;
11 years ago
11 years ago
&.active {
display: block;
}
}