blog

The tiny blog platform powering https://blog.kore.io
Commits | Files | Refs | README | git clone https://git.kore.io/kore-blog.git

commit a67eeb0c9b0dab4803cb94da4c7803a1be04d219
parent 142984136a8b5dd0c8d096e082ff69feab462d2d
Author: Joris Vink <joris@coders.se>
Date:   Wed, 18 Apr 2018 21:32:25 +0200

style changes

Diffstat:
assets/index_top.html | 2+-
assets/post_end.html | 2++
assets/post_start.html | 2+-
assets/style.css | 16+++++++++-------
4 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/assets/index_top.html b/assets/index_top.html @@ -9,7 +9,7 @@ <body> <div style="width: 100%; text-align: center"> - <a href="/"><img src="/logo.png" style="width: 400px; height: auto"></a> + <a href="/"><img class="logo" src="/logo.png"></a> </div> <div style="margin-top: 45px"></div> diff --git a/assets/post_end.html b/assets/post_end.html @@ -1,3 +1,5 @@ +<div style="margin-top: 45px"></div> + </body> </html> diff --git a/assets/post_start.html b/assets/post_start.html @@ -9,7 +9,7 @@ <body> <div style="width: 100%%; text-align: center"> - <a href="/"><img src="/logo.png" style="width: 400px; height: auto"></a> + <a href="/"><img class="logo" src="/logo.png"></a> </div> <div style="margin-top: 45px"></div> diff --git a/assets/style.css b/assets/style.css @@ -27,23 +27,25 @@ p { margin-top: 25px; } -pre { +p.date { + margin-top: 0px; font-size: 14px; - white-space: pre-wrap; - white-space: -moz-pre-wrap; - white-space: -pre-wrap; - white-space: -o-pre-wrap; - word-wrap: break-word; +} + +img.logo { + width: 320px; + height: auto; } code { + margin-top: 15px; + margin-bottom: 15px; background-color: #303030; border: 1px solid #303030; border-radius: 5px; color: #fff; font-size: 12px; width: 100%; - min-height: 200px; display: block; padding: 5px 10px 5px 10px; }