diff options
| author | Julian Hurst <julian.hurst92@gmail.com> | 2021-01-10 00:33:31 +0100 |
|---|---|---|
| committer | Julian Hurst <julian.hurst92@gmail.com> | 2021-01-10 00:33:31 +0100 |
| commit | b8c6629672e745cc0b4f138bbee900f6e34b1494 (patch) | |
| tree | 279d474a86b9fdd049982a58fa1a94c1cb36a545 /static/light.css | |
| parent | c14a472f704355b665f53214df67522e162c9613 (diff) | |
| download | grimtube-b8c6629672e745cc0b4f138bbee900f6e34b1494.tar.gz | |
Support light/dark color scheme prefs
Diffstat (limited to 'static/light.css')
| -rw-r--r-- | static/light.css | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/static/light.css b/static/light.css new file mode 100644 index 0000000..cbf3596 --- /dev/null +++ b/static/light.css @@ -0,0 +1,75 @@ +a { + color: black; +} + +p { + margin: 5px; +} + + +li { + list-style-type: none; +} + +body { + margin: 0 auto; + margin-top: 10px; + max-width: 80ex; +} + +table { + border-collapse: collapse; + width: 100%; +} + +tr { + border-bottom: 1px solid black; + border-top: 1px solid black; +} + +td { + padding-top: 10px; + padding-bottom: 10px; +} + +form { + margin-bottom: 10px; +} + +input { + width: 100%; +} + +iframe { + position: absolute; + top: 0; + left: 0; +} + +.comments { + font-size: small; +} + +input#term { + width: 70%; + height: 22px; + border: 1px solid black; + padding: 0px; + margin: 0px; +} + +select#lang { + width: calc(10% - 8px); + height: 22px; + border: 1px solid black; + padding: 0px; + margin: 0px; +} + +select#order { + width: calc(20% - 10px); + height: 22px; + border: 1px solid black; + padding: 0px; + margin: 0px; +} |
