diff options
Diffstat (limited to 'design/sass/print.scss')
-rw-r--r-- | design/sass/print.scss | 48 |
1 files changed, 40 insertions, 8 deletions
diff --git a/design/sass/print.scss b/design/sass/print.scss index f0f31a9..2a2bea5 100644 --- a/design/sass/print.scss +++ b/design/sass/print.scss @@ -2,11 +2,13 @@ @import "_mixins.scss"; body { - @include fancy_sans; + font-family: $fancy_serif; background: white; color: black; - font-size: 12pt; - margin: 0 5%; + max-width: 660px; + font-size: 11pt; + margin: 0 auto; + line-height: 1.6; } .header-wrapper, #breadcrumbs, #page-navigation, .post-subtitle, .comment--form--wrapper, footer { display: none; @@ -28,12 +30,13 @@ pre { p code { padding: 0 .25cm; } -.post-body img { - width: 100%; - border: 5px solid #f7f5f5; +.picwide img, .picfull img { + width: 80%; + margin: 0 auto; + filter: grayscale(100%); } .post-body p { - font-size: 13pt; + font-size: 11pt; } .post-body h3 { font-size: 19pt; @@ -54,4 +57,33 @@ p code { width: 2cm; } } - +main .post--body { + max-width: 660px; + margin: 0; +} +figure { + width: 100%; + margin: 0; +} +figcaption { + @include fancy_sans; + color: #999; + font-size: 9pt; + margin-top: 0; +} +.post-location { + @include fancy_sans; + color: #333; + font-size: 12pt; + a { + text-decoration: none; + display: none; + } + .region { + display: inline; + color: #333 !important; + } +} +.entry-footer, .article-afterward, .jslghtbx { + display: none; +} |