diff options
Diffstat (limited to 'stylesheets')
| -rw-r--r-- | stylesheets/partials/minima.scss | 2 | ||||
| -rw-r--r-- | stylesheets/partials/minima/_base.scss | 2 | ||||
| -rw-r--r-- | stylesheets/partials/minima/_layout.scss | 32 |
3 files changed, 34 insertions, 2 deletions
diff --git a/stylesheets/partials/minima.scss b/stylesheets/partials/minima.scss index 2b46ce6..346d88d 100644 --- a/stylesheets/partials/minima.scss +++ b/stylesheets/partials/minima.scss @@ -21,7 +21,7 @@ $grey-color-dark: darken($grey-color, 25%) !default; $table-text-align: left !default; // Width of the content area -$content-width: 800px !default; +$content-width: 1000px !default; $on-palm: 600px !default; $on-laptop: 800px !default; diff --git a/stylesheets/partials/minima/_base.scss b/stylesheets/partials/minima/_base.scss index 69b12cf..ce2090c 100644 --- a/stylesheets/partials/minima/_base.scss +++ b/stylesheets/partials/minima/_base.scss @@ -104,7 +104,7 @@ a { text-decoration: none; &:visited { - color: darken($brand-color, 15%); + color: $brand-color; } &:hover { diff --git a/stylesheets/partials/minima/_layout.scss b/stylesheets/partials/minima/_layout.scss index e07a669..dcfa539 100644 --- a/stylesheets/partials/minima/_layout.scss +++ b/stylesheets/partials/minima/_layout.scss @@ -38,6 +38,7 @@ a { margin-left: 20px; + color: $text-color; } .page-link { @@ -194,6 +195,10 @@ @include relative-font-size(1.75); } +#tag-search-message, #oh-its-empty { + display: none; +} + .post-list { margin-left: 0; list-style: none; @@ -206,6 +211,12 @@ .post-meta { font-size: $small-font-size; color: $grey-color; + display: flex; + margin-bottom: 30px; + + .separator { + width: 5px; + } } .post-link { @@ -319,6 +330,19 @@ img#image-profile { font-size: 12px; } +#footnotes { + margin-top: 50px; + + p.footpara { + display: inline; + } + + .footdef { + font: $base-font-weight 14px/#{$base-line-height} $base-font-family; + margin: 10px 0; + } +} + /* * Code blocks */ @@ -330,3 +354,11 @@ img#image-profile { font-family: monospace,monospace; color: #566b78; } + +code { + font-size: 12px !important; + background: #f5f7f9; + border-bottom: 1px solid #d8dee9; + font-family: monospace,monospace; + color: #566b78; +} |
