diff options
author | Alan Pearce | 2020-01-06 19:10:41 +0100 |
---|---|---|
committer | Alan Pearce | 2020-01-06 19:10:41 +0100 |
commit | 791259ea0c7ad71cde6f464e63b1baf14218d7b9 (patch) | |
tree | 3a684b36180fc7ec208d907bb7d203c6c887fa9e /static | |
parent | f61a5f2911abc1506851980da5f4f6edd69d9134 (diff) | |
download | hugo-xmin-791259ea0c7ad71cde6f464e63b1baf14218d7b9.tar.lz hugo-xmin-791259ea0c7ad71cde6f464e63b1baf14218d7b9.tar.zst hugo-xmin-791259ea0c7ad71cde6f464e63b1baf14218d7b9.zip |
Alphabetically sort CSS properties
Diffstat (limited to 'static')
-rw-r--r-- | static/css/style.css | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/static/css/style.css b/static/css/style.css index a0ca0da..6b09e41 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,19 +1,19 @@ body { - max-width: 800px; + font-family: sans-serif; + line-height: 1.5em; margin: auto; + max-width: 800px; padding: 1em; - line-height: 1.5em; - font-family: sans-serif; } /* header and footer areas */ .menu { padding: 0; } .menu li { display: inline-block; } .article-meta, .menu a { - text-decoration: none; background: #eee; - padding: 5px; border-radius: 5px; + padding: 5px; + text-decoration: none; } .menu, .article-meta, footer { text-align: center; } .title { font-size: 1.1em; } @@ -26,9 +26,8 @@ hr { /* 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; } @@ -43,9 +42,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; } |