blob: 2b3b86e2f81e2a741eb44e64c68b867a2c55976d (
plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
body {
color: orange;
background-color: black;
font-family: "VT323", monospace;
position: relative;
overflow-x: hidden;
margin-bottom: 0;
}
.logo {
margin-top: 0em;
margin-bottom: 0em;
font-size: 10em;
}
#overlay {
position: absolute;
top: 0;
right: 0;
left: 0;
height: 100%;
background: orange;
mix-blend-mode: multiply;
pointer-events: none;
overflow: none;
}
#root {
text-transform: uppercase;
font-family: "VT323", monospace;
width: min(90vw, 800px);
margin: auto;
border-left: 1px solid orange;
border-right: 1px solid orange;
padding: 8px;
min-height: 95vh;
}
#footer {
position: sticky;
bottom: 0;
left: 0;
right: 0;
border-top: 1px solid orange;
text-transform: uppercase;
font-family: "VT323", monospace;
font-size: 16px;
background-color: black;
color: orange;
margin: 0;
height: 32px;
overflow: hidden;
text-align: center;
padding-top: 8px;
}
#footer a {
color: orange;
}
.center-screen-container {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
.center-screen {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
min-height: 95vh;
}
.alert-box {
border: 2px solid orange;
background-color: black;
padding: 16px;
max-width: min(80vw, 600px);
font-size: 28px;
}
.bordered {
border: 2px solid orange;
}
h1 {
font-size: 32px;
}
h2 {
font-size: 28px;
}
p {
font-size: 24px;
padding: 1em;
}
.center {
text-align: center;
margin: auto;
}
input {
font-family: "VT323", monospace;
color: orange;
background-color: black;
font-size: 16px;
padding: 8px;
margin: 8px;
font-weight: bold;
border: 2px solid;
}
input[type=button] {
text-transform: uppercase;
font-size: 20px;
}
input[type=button]:hover {
color: black;
background-color: orange;
}
input[type=button]:active {
color: black;
background-color: grey;
}
label {
text-transform: lowercase;
}
|