File size: 507 Bytes
59d634d |
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 |
.voice-button {
position: relative;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
height: 20px;
gap: 2px;
.voice-button-item {
position: relative;
pointer-events: none;
background: #52467b;
width: 1px;
gap: 2px;
height: 100%;
animation: sound 0ms 0ms linear infinite alternate;
flex: 1;
}
}
@keyframes sound {
0% {
opacity: .35;
transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1);
}
}
|