-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (98 loc) · 2.36 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
background-color: white;
padding: 2em;
overflow: hidden;
}
div,
canvas {
border-radius: 100%;
box-sizing: border-box;
position: relative;
}
div::before,
div::after {
border-radius: inherit;
box-sizing: inherit;
content: "";
position: absolute;
width: 100%;
height: 100%;
}
.base {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
align-items: center;
display: flex;
flex-direction: column;
}
.lens {
background-image: radial-gradient(#b10000 12%, #120619 67%, #200517);
border: 8px solid #0b020d;
box-sizing: border-box;
box-shadow: 0 0 5px 2.5px #120619;
-moz-box-shadow: 0 0 5px 2.5px #120619;
-webkit-box-shadow: 0 0 5px 2.5px #120619;
-o-box-shadow: 0 0 5px 2.5px #120619;
width: 213px;
height: 213px;
}
.lens::before {
background-image: radial-gradient(#f00 20%, #470010 50%, #1a193e 80%);
mix-blend-mode: soft-light;
opacity: 0.8;
}
.lens::after {
background-image: radial-gradient(#fff 2px, #fff300 8px, rgba(255, 0, 0, 0.9) 14px, rgba(255, 0, 0, 0.08) 35px, transparent 35px);
}
.reflections,
.reflections::before,
.reflections::after {
background-image: radial-gradient(transparent 19%, #ec32aa 23%, #d4f6fc 28%, #ec32aa 33%, transparent 36%, transparent 38%, #e558d0 40%, #d0fcfe 45%, #ce73df 50%, transparent 52%, transparent 56%, #b883e7 60%, #b7ffff 65%, #3564c7 72%, transparent);
background-size: 182px 182px;
background-position: top center;
border-radius: 15px 15px 5px 5px/5px 5px 15px 15px;
filter: blur(4px);
position: absolute;
top: 26px;
width: 58px;
height: 75px;
}
.reflections {
left: 69px;
transform: perspective(30px) rotate3d(1, 0, 0, -15deg);
transform-origin: top;
}
.reflections::before,
.reflections::after {
height: 45px;
top: 28px;
}
.reflections::before {
left: -65px;
transform: rotate(-43deg);
}
.reflections::after {
right: -65px;
transform: rotate(43deg);
}
#audioWaveCanvas {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.text {
margin-top: 2em;
color: #79b4ba;
}
.animation {
background: radial-gradient(#79b4ba, #47696d, #890000);
mix-blend-mode: color-dodge;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
}