summaryrefslogtreecommitdiff
path: root/src/http/static/mediocre.css
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-09-13 12:56:08 +0200
committerBrian Picciano <mediocregopher@gmail.com>2022-09-13 12:56:08 +0200
commit4f01edb9230f58ff84b0dd892c931ec8ac9aad55 (patch)
tree9c1598a3f98203913ac2548883c02a81deb33dc7 /src/http/static/mediocre.css
parent5485984e05aebde22819adebfbd5ad51475a6c21 (diff)
move src out of srv, clean up default.nix and Makefile
Diffstat (limited to 'src/http/static/mediocre.css')
-rw-r--r--src/http/static/mediocre.css79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/http/static/mediocre.css b/src/http/static/mediocre.css
new file mode 100644
index 0000000..26dee81
--- /dev/null
+++ b/src/http/static/mediocre.css
@@ -0,0 +1,79 @@
+
+:root {
+
+--m-red: #EE7F38;
+--m-dark: #023B47;
+--m-light: #fefcf3;
+--m-blue: #295E52;
+
+--nc-tx-1: var(--m-dark);
+--nc-tx-2: #000;
+
+--nc-bg-1: #FFF;
+--nc-bg-2: var(--m-light);
+--nc-bg-3: var(--m-dark);
+
+--nc-lk-1: var(--m-blue);
+--nc-lk-2: var(--m-red);
+--nc-lk-tx: #FFF;
+
+--nc-ac-1: var(--m-red);
+--nc-ac-tx: var(--m-light);
+}
+
+html {
+ font-family: Georgia, serif;
+ font-size: 1.3em;
+}
+
+header {
+ background: var(--nc-bg-1);
+}
+
+h1, h2, h3, h4, h5, h6, .button-primary, .button, header, footer {
+ font-family: var(--nc-font-sans);
+}
+
+h1, h2, h3 {
+ border-bottom: 0;
+ margin-bottom: 1rem;
+}
+
+h1 a,
+h2 a,
+h3 a,
+h4 a,
+h5 a,
+h6 a {
+ text-decoration: none;
+ color: var(--nc-tx-1);
+}
+
+ul {
+ list-style: circle;
+}
+
+hr {
+ margin: 2rem 0 2rem 0;
+ border-color: var(--nc-bg-3);
+ opacity: 25%;
+}
+
+table {
+ font-size: 0.8rem;
+}
+
+table td {
+ border: 0;
+ margin: 0;
+}
+
+table td form,
+table td input {
+ margin: 0;
+ width: 100%;
+}
+
+table tr:nth-child(even) {
+ background-color: initial;
+}