From d5857f9dbecd498e341c8cb5d0866749c5c554c7 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 10 Jan 2020 19:57:53 +0100 Subject: Squashed 'themes/xmin/' changes from 982dfb3..aa6eb5a aa6eb5a Make post template microformats-compatible 217445a Support XFN 6365d4b Improve semanticity ccbf84f Remove useless main tag ee3e939 Show tags as article metadata 6394af8 Add support for alternative output formats (e.g. RSS) b85fdab Remove non-semantic hr tags from layout 311e7f3 Make 404 page less shouty 773e2d4 Convert to block-based templates 791259e Alphabetically sort CSS properties f61a5f2 Use ISO8601 date format 6d06143 Remove custom fonts git-subtree-dir: themes/xmin git-subtree-split: aa6eb5a51f3bdbc4e7c621d2a36701ef57ce0143 --- static/css/style.css | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) (limited to 'static/css/style.css') diff --git a/static/css/style.css b/static/css/style.css index 4dc3ae4..76658fe 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,33 +1,40 @@ body { - max-width: 800px; + font-family: sans-serif; + line-height: 1.5em; margin: auto; + max-width: 800px; padding: 1em; - line-height: 1.5em; } /* header and footer areas */ -.menu { padding: 0; } -.menu li { display: inline-block; } -.article-meta, .menu a { - text-decoration: none; +nav > ul { padding: 0; } +nav > ul > li { display: inline-block; } +article > header, nav > ul a { background: #eee; - padding: 5px; border-radius: 5px; + padding: 5px; + text-decoration: none; } -.menu, .article-meta, footer { text-align: center; } +.terms { font-size: .9em; } +nav > ul, article > header, footer { text-align: center; } .title { font-size: 1.1em; } footer a { text-decoration: none; } hr { border-style: dashed; color: #ddd; } +body > nav { + border-bottom: 1px solid #ddd; +} +body > footer { + border-top: 1px solid #ddd; +} /* code */ pre { border: 1px solid #ddd; - box-shadow: 5px 5px 5px #eee; - padding: 1em; overflow-x: auto; + padding: 1em; } code { background: #f9f9f9; } pre code { background: none; } @@ -42,9 +49,9 @@ blockquote { } table { - margin: auto; - border-top: 1px solid #666; border-bottom: 1px solid #666; + border-top: 1px solid #666; + margin: auto; } table thead th { border-bottom: 1px solid #ddd; } th, td { padding: 5px; } -- cgit 1.4.1