-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (60 loc) · 921 Bytes
/
style.css
File metadata and controls
70 lines (60 loc) · 921 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
65
66
67
68
69
70
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background:#121212;
}
body{
overflow: hidden;
}
body .wrapper{
z-index: 999;
color: #00FF00;
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#loading,
#start,
#data {
display: flex;
justify-content: center;
align-items: center;
}
#loading,
#start,
#video {
height: 100%;
width: 100vw;
position: absolute;
top: 0;
left: 0;
}
#loading {
z-index: 3;
font-size: 36px;
}
#start {
flex-direction: column;
z-index: 2;
font-size: 36px;
}
#data {
flex-direction: column;
text-align: center;
}
#data span {
z-index: 1;
background: transparent !important;
}
#video{
z-index: -1;
}
@media only screen and (min-aspect-ratio: 1/1) {
#video {
object-fit: cover;
}
}