-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
91 lines (81 loc) · 1.42 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
body, html {
margin: 0;
padding: 0;
overflow: hidden;
}
#canvas-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
/* #overlay-image {
position: absolute;
top: 0;
left: 0;
width: 85%;
height: 100%;
opacity: 0.5;
z-index: 20;
pointer-events: none;
} */
div {
position: absolute;
top: 6.9vw;
left: 6.6vw;
font-size: 8.9vw;
line-height: 10.65vw;
letter-spacing: -0.3vw;
font-family: "Noto Sans JP", sans-serif;
font-weight: 700;
font-feature-settings: 'palt';
}
.noto-sans-jp {
font-family: "Noto Sans JP", sans-serif;
font-weight: 700;
font-style: normal;
font-feature-settings: 'palt';
}
audio {
position: absolute;
bottom: 10px;
filter: sepia(20%) saturate(70%) grayscale(1) contrast(99%) invert(12%);
width: 70%;
height: 70px;
z-index: 50;
}
span {
display: inline-block;
z-index: 20;
}
#black-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
opacity: 1;
z-index: 30;
transition: opacity 1s ease;
pointer-events: none; /* 避免干扰点击事件 */
}
span[class^="block-"] {
opacity: 1;
background-color: black;
width: 0;
height: 9.1vw;
transform: translateY(1.2vw);
display: inline-block;
}
.credits {
position: relative;
top: 0;
left: 0.7vw;
font-size: 3.8vw;
line-height: 4.5vw;
letter-spacing: -0.2vw;
display: inline-block;
}