-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
main.css
83 lines (71 loc) · 1.17 KB
/
main.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
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap");
html {
background-color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
}
body {
font-family: "Roboto Mono", monospace;
color: #0a0a23;
font-size: 18px;
padding: 1em;
line-height: 1.4;
text-align: left;
display: flex;
align-items: center;
justify-content: center;
margin-top: 10vw;
}
.error-middle {
display: block;
width: 80vw;
}
a {
color: #0a0a23;
text-decoration: underline;
}
a:hover {
color: #f5f6f7;
background-color: #1b1b32;
cursor: pointer;
text-decoration: none;
}
a:active {
box-shadow: none;
top: 5px;
}
.cloudflare-block {
padding: 1em;
margin: 1em;
}
.cloudflare-block h1 {
font-size: 1em;
}
.cloudflare-block p,
.cloudflare-block ul,
.cloudflare-block li {
font-size: 1em;
}
.universal-nav {
margin: 0px;
width: 100vw;
height: 38px;
background-color: #0a0a23;
position: fixed;
top: 0px;
display: flex;
justify-content: center;
}
.universal-nav img {
margin: 7px 0px;
height: 24px;
}
.youtube-embed {
text-align: center;
}
@media (min-width: 768px) {
.error-middle {
width: 60vw;
}
}