Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/static/src/startup-banner.css
7073 views
1
/* From https://stackoverflow.com/questions/17029384/rotating-a-svg-with-css-animation/17031363 */
2
3
.cocalc-spin {
4
animation-name: ckw;
5
animation-duration: 20s;
6
animation-iteration-count: infinite;
7
transform-origin: 50% 50%;
8
display: inline-block;
9
}
10
@keyframes ckw {
11
0% {
12
transform: rotate(0deg);
13
}
14
100% {
15
transform: rotate(360deg);
16
}
17
}
18
19
.cocalc-fade-in {
20
opacity: 0;
21
animation-duration: 4s;
22
animation-name: cocalc-fadein;
23
}
24
25
@keyframes cocalc-fadein {
26
from {
27
opacity: 0;
28
}
29
to {
30
opacity: 1;
31
}
32
}
33
34