summaryrefslogtreecommitdiff
path: root/jimbrella/static/jimbrella.css
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2021-10-20 00:03:07 +0800
committerFrederick Yin <fkfd@fkfd.me>2021-10-20 00:03:07 +0800
commit21880c47ba381221b9a269c0aa2e83b11d8eb945 (patch)
tree33a53fb6382b5163e98584dd649e02ad7ab998b8 /jimbrella/static/jimbrella.css
parenteedc26ed8b2848487164614e49a4b5647d24c7d1 (diff)
More work on web console
Diffstat (limited to 'jimbrella/static/jimbrella.css')
-rw-r--r--jimbrella/static/jimbrella.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/jimbrella/static/jimbrella.css b/jimbrella/static/jimbrella.css
new file mode 100644
index 0000000..06c7225
--- /dev/null
+++ b/jimbrella/static/jimbrella.css
@@ -0,0 +1,34 @@
+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;
+}
+
+/* Desktop */
+@media(min-width: 1081px) {
+ #container {
+ width: 60%;
+ left: 20%;
+ }
+}
+
+/* Mobile compatibility */
+@media (max-width: 1080px) {
+ #container {
+ padding: 1em;
+ }
+}