diff options
| author | Bobby <[email protected]> | 2023-01-02 14:22:04 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-01-02 14:22:04 -0500 |
| commit | 5a40fdd435185290b77596b792d3f6eb81819c16 (patch) | |
| tree | 4f35500b301740d591d5998f1de9d02db718b607 /static/css/main.css | |
| parent | 24183dbddd0db7c34a020f65e8c52cffadc9b49e (diff) | |
| download | thatcomputerscientist-5a40fdd435185290b77596b792d3f6eb81819c16.tar.xz thatcomputerscientist-5a40fdd435185290b77596b792d3f6eb81819c16.zip | |
post improvements and avatar chooser
Diffstat (limited to 'static/css/main.css')
| -rw-r--r-- | static/css/main.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/static/css/main.css b/static/css/main.css index 20310cb1..fe53f5e0 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -10,6 +10,7 @@ body { margin: 0px auto 0px; padding: 0px; color: #dddddd; + box-sizing: border-box; } #editor-container { @@ -26,7 +27,7 @@ a:hover { text-decoration: underline; } -h2, #editor-container h2 { +h2, h3, #editor-container h2 { color: white; font-size: 11px; font-weight: bold; @@ -37,6 +38,10 @@ h2, #editor-container h2 { margin-bottom: 15px; } +h3 { + text-transform: none; +} + input, textarea, select { padding: 5px 10px; border: none; @@ -159,6 +164,10 @@ kbd { color: #fa3737; } +.success { + color: #00ff00; +} + .ac { margin-right: 5px; height: 12px; @@ -194,6 +203,7 @@ kbd { .highlight { background: none !important; + text-align: left !important; } .comment { |
