Issue #494
Code
Remove max-width
from source/css/style.styl
1 2 3 4 5
| .outer clearfix() // max-width: (column-width + gutter-width) * columns + gutter-width margin: 40px auto padding: 0 gutter-width
|
Change font-size
of code block from source/css/_partial/highlight.styl
1 2 3 4 5 6 7 8 9 10 11
| $code-block background: $highlight-background margin: article-padding article-padding * 0 padding: 15px article-padding border-style: solid border-color: color-border border-width: 1px 0 overflow: auto color: $highlight-foreground font-size: 1.0em; line-height: 1em
|
Change font-size
of article-header
from source/css/_partial/article.styl
1 2 3 4 5 6 7 8
| .article-header h1 margin: 0 0 3px 0; font-size: 26px; line-height: 1.2; a color: #404040; text-decoration: none;
|
Change font-size
of text from source/css/_partial/article.styl
1 2 3 4 5 6 7 8 9
| .article-entry @extend $base-style clearfix() color: color-default padding: 0 p, table line-height: line-height margin: line-height 0 font-size: 1.1em
|