diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-01-18 19:21:18 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-01-18 20:09:47 +0100 |
commit | 85df1e9f71f204d15b8cfd8801fab7cec77f1a0c (patch) | |
tree | 6f575d82cb045f8124168a98d00a45c5089d4b31 | |
parent | b1abfbd8fed6b164f181bc149f86526ae61abda1 (diff) |
style.css: sort properties alphabetically
-rw-r--r-- | style.css | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -1,11 +1,11 @@ body { - font-size: 9pt; color: #333; background-color: #fff; - padding: 0; - margin: 0; font-family: monospace; + font-size: 9pt; + margin: 0; overflow: hidden; + padding: 0; } body.frame { overflow: hidden; @@ -17,8 +17,8 @@ h2 { } #sidebar ul, #sidebar ul li { list-style: none; - padding: 0; margin: 0; + padding: 0; } #sidebar { background-color: inherit; @@ -36,22 +36,22 @@ div#items { padding: 0 15px; } body.noframe div#sidebar { - position: fixed; - top: 0; - left: 0; - width: 175px; height: 100%; + left: 0; overflow: hidden; overflow-y: auto; + position: fixed; + top: 0; + width: 175px; z-index: 999; } body.noframe div#items { + height: 100%; left: 175px; + overflow: auto; position: absolute; - height: 100%; - top: 0; right: 0; - overflow: auto; + top: 0; } body.noframe div#items.nosidebar { left: 0px; @@ -60,7 +60,7 @@ body.frame #sidebar br { display: none; } body.frame .content { - padding: 0 1em; font-family: sans; font-size: medium; + padding: 0 1em; } |