mirror of
https://github.com/IrosTheBeggar/mStream.git
synced 2025-10-27 07:31:02 +00:00
26 lines
364 B
CSS
26 lines
364 B
CSS
.ripple {
|
|
position: absolute;
|
|
background: #fff;
|
|
border-radius: 50%;
|
|
width: 5px;
|
|
height: 5px;
|
|
animation: rippleEffect .88s 1;
|
|
opacity: 0;
|
|
}
|
|
|
|
@keyframes rippleEffect {
|
|
0% {
|
|
transform: scale(1);
|
|
opacity: 0.4;
|
|
}
|
|
100% {
|
|
transform: scale(100);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.waves {
|
|
transition: 0.2s;
|
|
overflow:hidden;
|
|
position: relative;
|
|
} |