You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
$primary: #17a;
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header a, #menu a, #nav a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header {
|
|
|
|
padding: .5em;
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu ul, #nav ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu {
|
|
|
|
background-color: $primary;
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
float: left;
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
&.active a { font-weight: bold; }
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: darken($primary,6);
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#nav {
|
|
|
|
float: left;
|
|
|
|
height: 100%;
|
|
|
|
border-right: 1px dotted #ccc;
|
|
|
|
padding: 1em 0;
|
|
|
|
width: 200px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
|
|
|
padding: 1.5em;
|
|
|
|
margin-left: 200px;
|
|
|
|
}
|