blob: a10661249f1b00010736ec35f17255c756110ef3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#chung {
width:calc(75vh + 25vw); /* Ensures that the chungoid is just stretched enough, regardless of what platform you're using */
height: 200px;
animation: rotation 1s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
|