-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
63 lines (57 loc) · 1.02 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
html,
body {
margin: 0;
padding: 0;
background: #161616;
color: white;
}
.loading-screen {
position: relative;
padding-left: 0;
padding-right: 0;
padding-top: 0;
background-color: #4bedc2;
width: 100%;
height: 100%;
opacity: 0;
}
.load-container {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 100vh;
background-color: #4bedc2;
opacity: 1;
z-index: 1;
}
h1 {
position: absolute;
top: 38%;
left: 50%;
transform: translate(-50%, -50%);
font-family: "Cosi Azure";
font-size: 84px;
}
.button {
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
}
.button a {
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
color: white;
border: 1px solid white;
padding: 24px 40px;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 10px;
transition: 0.3s;
}
.button:hover a {
background: white;
color: #161616;
transition: 0.3s;
}