-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcontent.css
More file actions
43 lines (39 loc) · 915 Bytes
/
content.css
File metadata and controls
43 lines (39 loc) · 915 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
#cat-gatekeeper-overlay {
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100vw !important;
height: 100vh !important;
background: transparent !important;
z-index: 2147483647 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
#cat-gatekeeper-overlay video {
height: 100vh;
width: auto;
animation: slide-in 3s forwards;
}
#cat-gatekeeper-overlay video.sleeping {
animation: none;
transform: translateX(0);
}
@keyframes slide-in {
from { transform: translateX(100vw); }
to { transform: translateX(0); }
}
#cat-gatekeeper-countdown {
position: absolute;
top: 20vh;
left: 35%;
transform: translateX(-50%);
font-size: 160px;
font-weight: bold;
color: white;
font-family: sans-serif;
background: rgba(0, 0, 0, 0.6);
border-radius: 20px;
padding: 60px 60px;
line-height: 1;
}