hugo-theme-mofo

Minimal theme for Hugo
git clone https://git.bracken.jp/hugo-theme-mofo.git
Log | Files | Refs | LICENSE

commit 86cc6ebf72e44f77f55c0ed1c11b333520c26434
parent 4fb702fa0e57e4ceeffad3fde3f96ee8198793cf
Author: Chris Bracken <chris@bracken.jp>
Date:   Sun, 23 Jun 2019 18:29:04 -0700

Order CSS properties alphabetically

No functional change.

Diffstat:
Mstatic/css/site.css | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/static/css/site.css b/static/css/site.css @@ -1,13 +1,13 @@ /* Basics. */ body { + color: #333; + font-size: 16px; + line-height: 1.6; margin: 40px auto; max-width: 650px; - line-height: 1.6; - font-size: 16px; - color: #333; padding: 0 10px } -pre,code { line-height: 1.0; font-size: 14px; } +pre,code { font-size: 14px; line-height: 1.0; } a { text-decoration: none; } h1,h2,h3 { line-height: 1.2; } h1 > a { color: #333; } @@ -18,15 +18,15 @@ h3 > a { color: #333; } /* Header */ header { margin-bottom: 2.5em; } header > div.site-title > h1 { - text-align: center; margin: 0; + text-align: center; } /* Navbar */ nav > .menu { list-style-type: none; - padding: 0; margin: 0; + padding: 0; text-align: center; } nav > ul > li.menu-item { @@ -43,6 +43,6 @@ section#posts > ol.post-list { list-style-type: none; } /* Single */ article h2.post-title { margin-bottom: 0.15em; } -article img { display: block; max-width: 100%; margin-left: auto; margin-right: auto; } +article img { display: block; margin-left: auto; margin-right: auto; max-width: 100%; } article figcaption { text-align: center; } article figcaption > h4 { font-weight: normal; margin-top: 0; }