diff options
author | Frankie B <git@diskfloppy.me> | 2023-07-28 23:44:35 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-07-29 18:10:50 +0100 |
commit | 4ac2a014d0094766c7d117cb83a048c98994613d (patch) | |
tree | 9be83de756b35f98ab3142c6d37e12ad95f0126b /public/css/master.css | |
parent | 7e4864f627fe5783be3ee4d81c2e0bc7e70063b6 (diff) |
Update stylesheet
Diffstat (limited to 'public/css/master.css')
-rw-r--r-- | public/css/master.css | 45 |
1 files changed, 33 insertions, 12 deletions
diff --git a/public/css/master.css b/public/css/master.css index 79c39a3..fd48db9 100644 --- a/public/css/master.css +++ b/public/css/master.css @@ -1,5 +1,8 @@ body { - font-family: monospace; + font-family: sans-serif; + margin: 0px; + color: #ddd; + background-color: #333; } html { @@ -106,14 +109,32 @@ div.project pre.small { overflow: hidden; } -div.preview pre, -div.project pre { +div.codeblock pre { background-color: #222; + border: 2px solid #FFF; + padding: 10px; color: #ccc; display: inline-block; text-align: left; - padding: 0.2em; max-width: 90%; + min-width: 400px; +} +div.codeblock pre h1, +div.codeblock pre hr { + margin: 0px +} + +div.codeblock pre h1 small { + color: #919191; + font-size: 12px; +} + +div.codeblock pre hr { + margin-bottom: 5px; +} + +div.codeblock pre code { + background-color: #222; } div.project pre { @@ -306,13 +327,6 @@ h3 { font-size: 115%; } -body { - font-family: sans-serif; - margin: 0px; - color: #ddd; - background-color: #333; -} - table.computers { width: 100%; } @@ -413,8 +427,15 @@ table.gb_admin tr td.gb_message { table.infotable tr td { border: none; padding-right: 5px; + vertical-align: bottom; } -table.infotable tr td h1 { +table.infotable tr td h1, +table.infotable tr td h2, +table.infotable tr td small { margin: 0px; } + +table.infotable tr td small { + margin-bottom: 5px; +} |