summary refs log tree commit diff
path: root/style.css
diff options
context:
space:
mode:
authorDruid520 <r.ustydruid520@proton.me>2026-08-08 20:21:42 -0700
committerDruid520 <r.ustydruid520@proton.me>2026-08-08 20:21:42 -0700
commit65abbd8e58c9ed61c86ebd64cbaf28843235db10 (patch)
tree60c75f646587c0d764deddbd6d32d7e7223aca5f /style.css
ADD: site
Diffstat (limited to 'style.css')
-rw-r--r--style.css35
1 files changed, 35 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..939e5ed --- /dev/null +++ b/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}