summaryrefslogtreecommitdiff
path: root/assets/style.css
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-02-13 22:10:45 +0100
committermetamuffin <metamuffin@disroot.org>2023-02-13 22:10:45 +0100
commit4298b09bdbf2650130c03b753a6738911e1d45ef (patch)
tree326473c2cdb7f9399d6025ccb6e63b05d387e0a0 /assets/style.css
parent143ff63acd01300b23178a2a4c08ece78cc83bd2 (diff)
downloadmetamuffin-website-4298b09bdbf2650130c03b753a6738911e1d45ef.tar
metamuffin-website-4298b09bdbf2650130c03b753a6738911e1d45ef.tar.bz2
metamuffin-website-4298b09bdbf2650130c03b753a6738911e1d45ef.tar.zst
optional css
Diffstat (limited to 'assets/style.css')
-rw-r--r--assets/style.css61
1 files changed, 61 insertions, 0 deletions
diff --git a/assets/style.css b/assets/style.css
new file mode 100644
index 0000000..9646d87
--- /dev/null
+++ b/assets/style.css
@@ -0,0 +1,61 @@
+@import url("https://s.metamuffin.org/static/font-ubuntu/include.css");
+
+:root {
+ --bg1: #090909;
+ --bg2: #141414;
+}
+
+img[align=left] {
+ border-radius: 1em;
+ width: 7em;
+ height: 7em;
+ display: block;
+}
+
+body {
+ margin: 3em;
+ background-color: var(--bg1);
+}
+
+nav {
+ margin: 1em 1em 1em 9em;
+ background-color: var(--bg2);
+ padding: 1em;
+ border: 0px solid transparent;
+ border-radius: 1em;
+}
+
+h1 {font-size: xx-large }
+h2 {font-size: x-large }
+h3 {font-size: large }
+h4 {font-size: medium }
+
+p,h1,h2,h3,h4,h5,h6,li { font-family: "Ubuntu", sans-serif; }
+h1,h2 { color: #b575ff }
+h3 { color: #ff83fd; margin-left: 1em }
+h4 { color: #ff82b2; margin-left: 2em }
+p,li { color: white; margin-left: 3em }
+a { color: #82a8ff; font-style: italic; text-decoration: underline }
+hr { border: 1px solid grey }
+
+math {color:white}
+
+pre,code {
+ color: #eeeeee;
+ font-family: monospace;
+ background-color: black;
+ border: 0px solid transparent;
+ border-radius: 5px;
+ padding: 0.2em;
+}
+pre { margin-left: 4em; margin-right: 4em; overflow-y: auto; }
+
+input[type=submit] {
+ background-color: black;
+ color: white;
+ border-radius: 1em;
+ padding: 0.5em;
+ border: 1px solid white;
+ margin-left: 4em;
+}
+