forked from kaischallenberg/monstercatVisualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (70 loc) · 1.52 KB
/
style.css
File metadata and controls
80 lines (70 loc) · 1.52 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
@font-face {
font-family: "nexa";
src: url("./fonts/bold.woff") format("woff");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "nexa";
src: url("./fonts/regular.ttf") format("truetype");
font-weight: 500;
font-style: normal;
}
canvas {
width: 1920px;
height: 1080px;
position: absolute;
pointer-events: none;
}
#visualizer {
pointer-events: none;
}
#playback-controls {
pointer-events: auto;
z-index: 10000 !important;
}
.bold {
font-family: "nexa", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
letter-spacing: -9.3px;
font-size: 111px;
text-transform: uppercase;
color: #ffffff;
}
.regular {
font-family: "nexa", sans-serif;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
font-size: 53px;
letter-spacing: -1.1px;
text-transform: uppercase;
color: #ffffff;
}
.control-btn {
width: 60px;
height: 60px;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.15);
color: #fff;
font-size: 24px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease, transform 0.1s ease;
box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.control-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.1);
}
.control-btn:active {
transform: scale(0.95);
}
#progress-container:hover {
background: rgba(255, 255, 255, 0.3);
}