summaryrefslogtreecommitdiff
path: root/static/dark.css
diff options
context:
space:
mode:
authorJulian Hurst <julian.hurst92@gmail.com>2021-01-10 00:33:31 +0100
committerJulian Hurst <julian.hurst92@gmail.com>2021-01-10 00:33:31 +0100
commitb8c6629672e745cc0b4f138bbee900f6e34b1494 (patch)
tree279d474a86b9fdd049982a58fa1a94c1cb36a545 /static/dark.css
parentc14a472f704355b665f53214df67522e162c9613 (diff)
downloadgrimtube-b8c6629672e745cc0b4f138bbee900f6e34b1494.tar.gz
Support light/dark color scheme prefs
Diffstat (limited to 'static/dark.css')
-rw-r--r--static/dark.css73
1 files changed, 73 insertions, 0 deletions
diff --git a/static/dark.css b/static/dark.css
new file mode 100644
index 0000000..aa19a5a
--- /dev/null
+++ b/static/dark.css
@@ -0,0 +1,73 @@
+a {
+ color: orange;
+}
+
+a:hover {
+ color: darkorange;
+}
+
+p {
+ margin: 5px;
+}
+
+li {
+ list-style-type: none;
+}
+
+body {
+ margin: 0 auto;
+ margin-top: 10px;
+ max-width: 80ex;
+ background-color: #111;
+ color: antiquewhite;
+}
+
+table {
+ border-collapse: collapse;
+ width: 100%;
+}
+
+tr {
+ border-bottom: 1px solid #666;
+ border-top: 1px solid #666;
+}
+
+td {
+ padding-top: 10px;
+ padding-bottom: 10px;
+ /*vertical-align: top;*/
+}
+
+form {
+ margin-bottom: 10px;
+}
+
+input {
+ width: 100%;
+}
+
+tr:hover {
+ background-color: #222;
+}
+
+iframe {
+ position: absolute;
+ top: 0;
+ left: 0;
+}
+
+.comments {
+ font-size: small;
+}
+
+input#term {
+ width: 70%;
+}
+
+select#lang {
+ width: calc(10% - 10px);
+}
+
+select#order {
+ width: calc(20% - 10px);
+}