diff options
author | Frederick Yin <fkfd@fkfd.me> | 2021-10-20 10:07:31 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2021-10-20 10:07:31 +0800 |
commit | a16226825629734a73220070d8afe908450ed522 (patch) | |
tree | ac5291d6506ab8222b41b352e091b5bad7b31ef6 /jimbrella/static/jimbrella.css | |
parent | 21880c47ba381221b9a269c0aa2e83b11d8eb945 (diff) |
Move container style to top in css
Diffstat (limited to 'jimbrella/static/jimbrella.css')
-rw-r--r-- | jimbrella/static/jimbrella.css | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/jimbrella/static/jimbrella.css b/jimbrella/static/jimbrella.css index 06c7225..5328f48 100644 --- a/jimbrella/static/jimbrella.css +++ b/jimbrella/static/jimbrella.css @@ -1,19 +1,3 @@ -body { - font-family: sans-serif; -} - -table.overview { - border: 2px solid; - text-align: center; -} - -td { - border: 1px solid; - padding-top: 1em; - padding-bottom: 1em; - width: 6em; -} - #container { position: relative; } @@ -32,3 +16,19 @@ td { padding: 1em; } } + +body { + font-family: sans-serif; +} + +table.overview { + border: 2px solid; + text-align: center; +} + +td { + border: 1px solid; + padding-top: 1em; + padding-bottom: 1em; + width: 6em; +} |