summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--godz/index.html4
-rw-r--r--godz/style.css35
2 files changed, 37 insertions, 2 deletions
diff --git a/godz/index.html b/godz/index.html index 318b412..55b5dad 100644 --- a/godz/index.html +++ b/godz/index.html
@@ -8,8 +8,8 @@
8</head> 8</head>
9<body> 9<body>
10 <h1>0druid.cc</h1> 10 <h1>0druid.cc</h1>
11 <p><a href="/">godz homepage</a>.</p> 11 <p><a href="/godz/index.html">godz homepage</a>.</p>
12 <p><a href="../git.html">git</a>. <a href="../irc.html">irc</a>. <a href="../index.html">homepage</a>.</p> 12 <p><a href="/git.html">git</a>. <a href="/irc.html">irc</a>. <a href="/index.html">homepage</a>.</p>
13 <p>put stuff here lalalala.</p> 13 <p>put stuff here lalalala.</p>
14 <p>contacts n stuff:</p> 14 <p>contacts n stuff:</p>
15 <p><a href="https://git.0druid.cc/godz">git1</a>.</p> 15 <p><a href="https://git.0druid.cc/godz">git1</a>.</p>
diff --git a/godz/style.css b/godz/style.css new file mode 100644 index 0000000..939e5ed --- /dev/null +++ b/godz/style.css
@@ -0,0 +1,35 @@
1@font-face {
2 font-family: "_Terminus";
3 src: url("/terminus.ttf") format("truetype");
4 font-weight: normal;
5 font-style: normal;
6}
7
8* {
9 margin: 0;
10 padding: 0;
11 box-sizing: border-box;
12}
13
14html {
15 background: #000;
16 color: #fff;
17 font-family: "_Terminus";
18}
19
20body {
21 min-height: 100vh;
22 padding: 1rem;
23}
24
25a {
26 color: #b8a0ff;
27}
28
29a:visited {
30 color: #b8a0ff;
31}
32
33a:hover {
34 color: #b8a0ff;
35}