mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 18:48:28 -04:00
23 lines
319 B
CSS
23 lines
319 B
CSS
.wrapper {
|
|
display: inline-block;
|
|
text-align: center;
|
|
}
|
|
|
|
.box {
|
|
display: inline-block;
|
|
height: 100%;
|
|
animation: loading 1.5s infinite ease-in-out both;
|
|
background-color: var(--medium-light);
|
|
}
|
|
|
|
@keyframes loading {
|
|
0%,
|
|
80%,
|
|
100% {
|
|
transform: scale(0);
|
|
}
|
|
40% {
|
|
transform: scale(0.6);
|
|
}
|
|
}
|