summaryrefslogtreecommitdiff
path: root/css/root.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/root.css')
-rw-r--r--css/root.css38
1 files changed, 0 insertions, 38 deletions
diff --git a/css/root.css b/css/root.css
deleted file mode 100644
index fd9e47b..0000000
--- a/css/root.css
+++ /dev/null
@@ -1,38 +0,0 @@
-:root {
- --black: #1B1A1A; /* 7/32 */
- --darkgrey: #232121; /* 8/32 */
- --lightgrey:#ECEAEA; /* 30/32 */
- --white: #F6F4F4; /* 31/32 */
- --blue: #5F7C9C; /* oklch(62.5% 0.118 259.065) */
-
- --bodyColour: var(--black);
- --backgroundColour:var(--darkgrey);
- --foregroundColour:var(--white);
- --colour: var(--blue);
-
- --minimumPageWidth:10rem; /* 12rem including body padding. */
- --maximumPageWidth:74rem;
-
- --monospaceFont:"Source Code Pro","monospace";
- --sansSerifFont:"Helvetica","sans-serif";
- --serifFont: "Liberation Serif","serif";
-
- font-family:var(--serifFont);
- font-size: calc(1000mm / 1728 * 8);
-}
-
-* {
- box-sizing:border-box;
- margin: 0;
- padding: 0;
-}
-
-body {
- background-color:var(--bodyColour);
- color: var(--foregroundColour);
- padding: 1rem;
-}
-
-p {
- line-height:1em;
-}