-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (52 loc) · 1.08 KB
/
Copy pathstyle.css
File metadata and controls
60 lines (52 loc) · 1.08 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
@font-face {
font-family: 'Matisse';
src: url('assets/fonts/matisse/FOT-Matisse Pro EB.woff2') format('woff2'),
url('assets/fonts/matisse/FOT-Matisse Pro EB.otf') format('opentype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body.splash {
background: #000;
width: 100vw;
height: 100vh;
overflow: hidden;
cursor: pointer;
}
#splash-screen.fade-out {
opacity: 0;
}
#titlecard {
width: 100vw;
height: 100vh;
object-fit: contain;
display: block;
}
#splash-screen {
position: relative;
width: 100%;
height: 100%;
opacity: 1;
transition: opacity 0.8s ease;
}
#prompt {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
font-family: 'Matisse', serif;
color: #888;
font-size: 0.85rem;
letter-spacing: 0.2em;
white-space: nowrap;
animation: blink 2s step-end infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}