-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
152 lines (132 loc) · 3.05 KB
/
style.css
File metadata and controls
152 lines (132 loc) · 3.05 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
body {
overflow: hidden;
background: #3b0e68;
background: radial-gradient(circle, #3b0e68 0%, #1a084e 100%);
}
.mic {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
}
.mic::before,
.mic::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 100%;
z-index: 2;
box-shadow: 0 0 20px 20px #1c084f;
}
.mic::before {
width: 300px;
height: 300px;
background-color: #1a084e;
}
.mic::after {
width: 250px;
height: 150px;
background-color: #2f1e5f;
animation: circle-size 0.8s linear infinite alternate;
}
.mic-icon {
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(4);
display: block;
width: 15px;
height: 12px;
border-bottom-left-radius: 120px;
border-bottom-right-radius: 120px;
border: 2px solid;
border-top: 0;
margin-top: 20px;
z-index: 3;
}
.mic-icon::before,
.mic-icon::after {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
}
.mic-icon::before {
width: 2px;
height: 5px;
top: calc(100% + 1px);
left: 50%;
transform: translate(-50%, 0);
background-color: #fff;
}
.mic-icon::after {
border: 2px solid;
width: 8px;
height: 18px;
left: 50%;
top: -10px;
border-radius: 4px;
transform: translate(-50%, 0);
}
.mic-shadow {
width: 275px;
height: 275px;
position: absolute;
top: 60%;
left: 50%;
border-radius: 100%;
z-index: 1;
box-shadow: 10px -55px 30px 15px #823ca6, 24px -10px 47px 10px #aab3d2, -21px -25px 97px 10px #5acee3, 51px 5px 17px 10px #1b7d8f, 3px 2px 77px 10px #f30bf5;
animation: shadow-rotate 1.5s linear infinite;
transform-origin: center;
}
@keyframes circle-size {
from {
width: 150px;
height: 150px;
}
to {
width: 250px;
height: 250px;
}
}
@keyframes shadow-rotate {
from {
transform: translate(-50%, -50%) rotate(0deg);
}
to {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.mic:hover {
transform: translate(-50%, -50%) scale(1.1);
/* Increase scale on hover */
cursor: pointer;
/* Change cursor to pointer on hover */
}
/* .button-34 {
background: #5E5DF0;
border-radius: 999px;
box-shadow: #5E5DF0 0 10px 20px -10px;
box-sizing: border-box;
color: #FFFFFF;
cursor: pointer;
font-family: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", EmojiSymbols, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif;
font-size: 15px;
font-weight: 500;
line-height: 24px;
opacity: 1;
outline: 0 solid transparent;
padding: 8px 18px;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: fit-content;
word-break: break-word;
border: 0;
}
*/