summaryrefslogtreecommitdiffstats
path: root/data/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'data/style.css')
-rw-r--r--data/style.css40
1 files changed, 40 insertions, 0 deletions
diff --git a/data/style.css b/data/style.css
new file mode 100644
index 0000000..52dfca6
--- /dev/null
+++ b/data/style.css
@@ -0,0 +1,40 @@
1:root {
2 --black: #333333;
3 --white: #eeeeee;
4}
5
6body {
7 background-color: var(--black);
8 color: var(--white);
9
10 font-family: monospace;
11 letter-spacing: 0.2em;
12}
13
14main {
15 padding: 2em;
16}
17
18a {
19 color: var(--white);
20}
21
22h1 {
23 font-size: 42px;
24
25 margin: 0;
26}
27
28#container {
29 padding-top: 2em;
30 padding-bottom: 2em;
31}
32
33input {
34 padding: 0.5em;
35
36 background-color: var(--white);
37 color: var(--black);
38
39 border: none;
40}