März 17, 2021
Von Barrikade
984 ansichten

@keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}

50% {
transform: scale3d(1.10, 1.10, 1.10);
}

to {
transform: scale3d(1, 1, 1);
}
}

.pulse {
animation: pulse 1s infinite;
}

.loader {
opacity: 0.5;
width: 100px;
}

body {
margin: 0;
}

.loading-container {
display: flex;
justify-content: center;
align-items: center;

height: 100vh;
}




Quelle: Barrikade.info