-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
115 lines (101 loc) · 1.92 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
color: white;
overflow: hidden;
}
.background {
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
}
#bg-video {
position: relative;
width: 100%;
height: 100%;
object-fit: cover;
}
.overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7), radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
}
.content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 1;
}
h1 {
font-size: 3em;
margin: 0.5em 0;
color: #87da21;
}
.tip {
font-family: "Barlow", sans-serif;
font-size: 1.3vw;
position: absolute;
font-size: 1.2em;
bottom: -130%;
color: #87da21;
margin-left: -35vw;
}
.thetip {
font-family: "Barlow", sans-serif;
font-size: 1.3vw;
position: absolute;
font-size: 1.2em;
bottom: -160%;
color: #ffffff;
margin-left: -35vw;
}
.loading-bar {
position: absolute;
top: 20vw;
left: -35vw;
width: 400px;
height: 13px;
background: #2e3229;
border-radius: 5px;
margin: 0;
}
.progress {
width: 0;
height: 100%;
background: #87da21;
border-radius: 5px;
transition: width 0.2s;
}
#progress-text {
font-size: 20px;
font-weight: bold;
color: #2e3229;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: "Barlow", sans-serif;
}
.big-slash {
position: absolute;
font-size: 2vw;
color: #87da21;
font-weight: bold;
bottom: -270%;
margin-left: -35vw;
letter-spacing: 0.2vw;
}
.loading {
position: absolute;
font-family: "Barlow", sans-serif;
font-size: 1.3vw;
color: lightgray;
bottom: -250%;
margin-left: -33vw;
}