-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcivic.css
More file actions
97 lines (83 loc) · 1.25 KB
/
civic.css
File metadata and controls
97 lines (83 loc) · 1.25 KB
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
body{
margin: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #000000;
}
.progress-loader {
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
width: 343px;
background: rgba(255, 255, 255, 0.2);
height: 5px;
border-radius: 7px;
}
.progress {
content: "";
width: 1px;
height: 5px;
border-radius: 7px;
background: rgb(144, 75, 246);
transition: 0.5s;
animation: loading1274 2s ease infinite;
}
@keyframes loading1274 {
0% {
width: 0%;
}
10% {
width: 10%;
}
50% {
width: 40%;
}
60% {
width: 60%;
}
100% {
width: 100%;
}
}
#videoContainer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
z-index: 10;
background: rgba(0, 0, 0, 0.8);
}
#myVideo{
position: absolute;
top: 0;
left: 0;
width: 99.9%;
height: 99.9%;
object-fit: cover;
}
#mySecondVideo, #myThirdVideo{
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: fill;
}
#myVideo, #mySecondVideo, #myThirdVideo{
animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}