layout / style tweaks

This commit is contained in:
2015-02-11 23:35:29 -05:00
parent 4af973d000
commit 6b0dfc58b0
5 changed files with 41 additions and 17 deletions

View File

@ -8,6 +8,11 @@
$serif: 'PT Serif', 'Georgia', serif;
$typewriter: Typewriter,"Georgia","Times",serif;
$base-font-color: #343434;
$base-border-radius: 3px;
// Layout
$max-width: em(624) !default;
$grid-columns: 8;

View File

@ -1,5 +1,5 @@
body {
color: #343434;
color: $base-font-color;
background: #ffffff;
font-family: $serif;
@ -68,26 +68,44 @@ body {
article.hentry {
border-bottom: 1px #dedede solid;
header time {
color: transparentize($base-font-color, .6);
font-size: 0.9em;
font-style: italic;
margin-bottom: 0.3em;
}
h1 {
font-size: 1.6em;
margin-bottom: 0.5em;
}
pre {
padding: 0.5em;
overflow: auto;
}
code {
background: #F7F7F7;
border-radius: $base-border-radius * 1.5;
border: 1px solid #E0E0E0;
font-family: monaco;
font-size: 0.75em;
font-style: normal;
padding: 0.1em 0.4em;
white-space: nowrap;
}
footer {
font-size: 0.8em;
}
}
article {
pre {
background: #000;
color: #fff;
padding: 0.5em;
overflow: auto;
}
.gist-file pre {
color: #000;
}
footer time {
margin-bottom: 1em;
display: block;
text-align: right;
}
}
article.list {