layout / style tweaks
This commit is contained in:
@ -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;
|
||||
|
@ -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 {
|
||||
|
Reference in New Issue
Block a user