This commit is contained in:
Oliver Davies 2015-03-19 15:23:34 +00:00
parent 735d43b650
commit 2d6d058941
3 changed files with 38 additions and 38 deletions

View file

@ -1,18 +1,18 @@
.content { .content {
@include container(960px); @include container(960px);
padding: 1em 0 2em; padding: 1em 0 2em;
a { a {
text-decoration: none; text-decoration: none;
&:link, &:link,
&:visited { &:visited {
color: #0678be; color: #0678be;
} }
&:hover, &:hover,
&:focus { &:focus {
color: black; color: black;
} }
} }
} }

View file

@ -4,19 +4,19 @@ header[role="banner"] {
padding: 1.5em 0; padding: 1.5em 0;
.inner { .inner {
@include container(960px); @include container(960px);
.site-name { .site-name {
@include span(first 3); @include span(first 3);
} }
.main-menu { .main-menu {
@include span(9); @include span(9);
text-align: right; text-align: right;
a { a {
border-bottom: 1px solid #064771; border-bottom: 1px solid #064771;
color: white; color: white;
display: block; display: block;
margin-left: .5em; margin-left: .5em;
text-decoration: none; text-decoration: none;
@ -24,11 +24,11 @@ header[role="banner"] {
&.active { &.active {
border-color: white; border-color: white;
} }
} }
} }
} }
} }
.main-menu ul { .main-menu ul {
@include inline-block-list; @include inline-block-list;
} }

View file

@ -8,38 +8,38 @@
@import "modules/**/*"; @import "modules/**/*";
body { body {
color: #222; color: #222;
font: 14px Arial; font: 14px Arial;
} }
p, p,
ul, ul,
ol, ol,
pre { pre {
margin-bottom: 1em; margin-bottom: 1em;
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
} }
h1 { h1 {
font-size: 2em; font-size: 2em;
margin-bottom: .5em; margin-bottom: .5em;
} }
h2 { h2 {
font-size: 1.5em; font-size: 1.5em;
margin-bottom: .5em; margin-bottom: .5em;
} }
ul { ul {
list-style-type: disc; list-style-type: disc;
} }
code { code {
font-family: "Courier New"; font-family: "Courier New";
} }
dd { dd {
padding-left: 1.5em; padding-left: 1.5em;
} }