blob: 644a4b46ead1a5b26ac32272dbd6f42ec118d80c (
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
|
body {
background-color: #0A7189;
color: #fff;
font: 100% "Lato", sans-serif;
font-size: 1.8rem;
font-weight: 300;
}
a {
color: #75C6D9;
text-decoration: none;
}
h3 {
margin-bottom: 1%;
}
ul {
list-style: none;
margin: 0;
padding: 0;
line-height: 50px;
}
li a:hover {
color: #fff;
}
.center {
text-align: center;
}
.header {
font-size: 13rem;
font-weight: 700;
margin: 2% 0 2% 0;
text-shadow: 0px 3px 0px #7f8c8d;
}
/* Error Styling */
.error {
margin: -70px 0 2% 0;
font-size: 7.4rem;
text-shadow: 0px 3px 0px #7f8c8d;
font-weight: 100;
}
|