diff options
author | Alan Pearce | 2020-01-10 19:57:53 +0100 |
---|---|---|
committer | Alan Pearce | 2020-01-10 19:57:53 +0100 |
commit | cdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84 (patch) | |
tree | 22c02e0642ca4055a768cc8f1ebff95741c273dc /themes/xmin/static/css | |
parent | eea42a5b1b05fbbdc9f33df41576de0232fcbd4d (diff) | |
parent | d5857f9dbecd498e341c8cb5d0866749c5c554c7 (diff) | |
download | website-cdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84.tar.lz website-cdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84.tar.zst website-cdd34e9bfbfa6a23b93cedcffaa8d8f9e862fc84.zip |
Merge commit 'd5857f9dbecd498e341c8cb5d0866749c5c554c7'
Diffstat (limited to 'themes/xmin/static/css')
-rw-r--r-- | themes/xmin/static/css/fonts.css | 7 | ||||
-rw-r--r-- | themes/xmin/static/css/style.css | 31 |
2 files changed, 19 insertions, 19 deletions
diff --git a/themes/xmin/static/css/fonts.css b/themes/xmin/static/css/fonts.css deleted file mode 100644 index 8ffcecd..0000000 --- a/themes/xmin/static/css/fonts.css +++ /dev/null @@ -1,7 +0,0 @@ -body { - font-family: Optima, Candara, Calibri, Arial, sans-serif; -} -code { - font-family: "Lucida Console", Monaco, monospace; - font-size: 85%; -} diff --git a/themes/xmin/static/css/style.css b/themes/xmin/static/css/style.css index 4dc3ae4..76658fe 100644 --- a/themes/xmin/static/css/style.css +++ b/themes/xmin/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; } |