-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (78 loc) · 1.45 KB
/
style.css
File metadata and controls
92 lines (78 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* Such a big THANK YOU to devils of devils.gay for showing me how this should be done! */
/* LIGHT MODE */
:root {
--color: #0f0f0f;
--link-color: #3b0000;
--bg-image: url(media/conback.scans.png);
--bg-color: hsl(204, 44%, 65%);
}
/* unvisited link */
a:link {
color: #975777;
}
/* visited link */
a:visited {
color: #13131f;
}
/* mouse over link */
a:hover {
color: #1313df;
}
/* selected link */
a:active {
color: #37374b;
}
/* DARK MODE */
@media (prefers-color-scheme: dark) {
:root {
--color: #ffffff;
--link-color: #20bdec;
--bg-image: url(media/ammo_fl2.png);
--bg-color: hsl(30, 36%, 4%);
}
/* unvisited link */
a:link {
color: #ffa8de;
}
/* visited link */
a:visited {
color: #ffc5a8;
}
/* mouse over link */
a:hover {
color: #7fbfff;
}
/* selected link */
a:active {
color: #ffffff;
}
}
body {
max-width: 800px ;
margin: auto ;
color: var(--color);
background-image: var(--bg-image);
background-color: var(--bg-color);
}
/* unvisited link */
a:link {
color: var(--link-color);
}
/* The following was written by devils.gay - thank you */
uppercase,yell {
text-transform: uppercase;
}
#header #forkme {
position: absolute;
margin: 0;
top: 0;
right: 0;
border: 0;
}
/* What font to use */
h1, h2, h3, a, li, th, br, p {
font-family: Geist, "Liberation Sans", Helvetica, Arial, sans-serif;
}
pre, tt, xmp {
font-family: "Geist Mono", monospace, Courier;
}