-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (69 loc) · 1.14 KB
/
style.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
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.container {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
max-width: 600px;
padding: 0 16px;
margin: auto;
transform: translate(-50%, -50%);
text-align: center;
box-sizing: border-box;
}
.container h1 {
margin: 8px 0;
font-size: 28px;
}
.container p {
margin: 8px 0;
}
.container hr {
height: 1px;
margin: 8px 0;
background-color: grey;
border: none;
}
.loading-anime {
color: grey;
font-weight: bold;
font-family: 'monospace';
font-size: 28px;
text-align: center;
user-select: none;
-o-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
}
.user-info {
font-family: 'monospace';
font-size: 12px;
}
.user-info a {
color: black;
}
#cf-wrapper #challenge-form {
padding-top: 25px;
padding-bottom: 25px;
}
#cf-hcaptcha-container {
text-align: center;
}
#cf-hcaptcha-container iframe {
display: inline-block;
}
@media (prefers-color-scheme: dark) {
html, body {
background: #222;
color: #DDD;
}
.user-info a {
color: #DDD;
}
}