-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
64 lines (56 loc) · 1008 Bytes
/
main.css
File metadata and controls
64 lines (56 loc) · 1008 Bytes
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
@import url(https://fonts.googleapis.com/css?family=Lato);
html {
background-color: #18621D;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
body {
font-family: "Lato", Arial;
color: #d4d4da;
font-size: 20px;
margin: 2em auto;
max-width: 800px;
padding: 1em;
line-height: 1.4;
text-align: justify;
display: flex;
align-items: center;
justify-content: center;
}
.error-middle {
display: block;
vertical-align: middle;
width: 60vw;
}
a {
background-color: burlywood;
color: #1e2040;
padding: 0 0.2em 0.2em 0.4em;
margin-right: 0.2em;
position: relative;
text-decoration: none;
}
a:hover {
color: #d4d4da;
background-color: #1e2040;
cursor: pointer;
}
a:active {
box-shadow: none;
top: 5px;
}
.cloudflare-block {
border: 2px solid #d4d4da;
border-radius: 3px;
padding: 1em;
}
.cloudflare-block h1 {
font-size: 16px;
}
.cloudflare-block p,
.cloudflare-block ul,
.cloudflare-block li {
font-size: 12px;
}