-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
98 lines (82 loc) · 1.9 KB
/
index.css
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
93
94
95
96
97
98
:root {
--text-border: -2px -2px 0 black, -2px -1px 0 black, -2px 0px 0 black,
-2px 1px 0 black, -2px 2px 0 black, -1px -2px 0 black, -1px -1px 0 black,
-1px 0px 0 black, -1px 1px 0 black, -1px 2px 0 black, 0px -2px 0 black,
0px -1px 0 black, 0px 0px 0 black, 0px 1px 0 black, 0px 2px 0 black,
1px -2px 0 black, 1px -1px 0 black, 1px 0px 0 black, 1px 1px 0 black,
1px 2px 0 black, 2px -2px 0 black, 2px -1px 0 black, 2px 0px 0 black,
2px 1px 0 black, 2px 2px 0 black;
/* why */
--monospace: Consolas, Monaco, Lucida Console, Liberation Mono,
DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New; /* i stole this btw hehe */
}
body {
background-color: #1e1e1e; /* default value */
color: white;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
text-align: center;
text-shadow: var(--text-border);
}
h2 {
text-shadow: var(--text-border);
}
p {
text-shadow: var(--text-border);
}
a {
text-align: center;
text-shadow: var(--text-border);
}
a:link {
color: #00bcd4;
}
a:visited {
color: #00da75;
}
label {
text-shadow: var(--text-border);
}
#bytebeat-code {
font-family: var(--monospace);
background-color: #000000;
color: white;
}
#cont1 {
text-align: center;
}
ste {
color: #00ff00;
text-shadow: var(--text-border);
}
reo {
color: #ff00ff;
text-shadow: var(--text-border);
}
#noscripttext {
/* make it way too obvious */
background-color: white;
text-shadow: 2px 9px blue;
animation-name: noscriptstuff;
animation-duration: 2s;
animation-fill-mode: forwards;
}
@keyframes noscriptstuff {
to {
color: red;
}
from {
color: yellow;
}
}
#displayText {
display: inline;
font-family: var(--monospace);
background-color: #00000050;
border-radius: 20px;
}
red {
color: red;
text-shadow: var(--text-border);
}