summaryrefslogtreecommitdiffstats
path: root/data/style.css
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2022-12-22 19:09:34 +0100
committerjdlugosz963 <jdlugosz963@gmail.com>2022-12-22 19:09:34 +0100
commitb6d1df48244db14d693c286445ca1384341ae0c1 (patch)
tree8ce0bdea077e5f132087f53437dab7bc34794233 /data/style.css
parent64ea63f2efadddf9bf185f7ce24bf3c56538b287 (diff)
downloadshack-b6d1df48244db14d693c286445ca1384341ae0c1.tar.gz
shack-b6d1df48244db14d693c286445ca1384341ae0c1.zip
Add webserver and simple webpage
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}