mStream/webapp-beta/css/waves.css
IrosTheBeggar cd6eb83102 waves
2020-10-27 01:10:19 -04:00

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;
}