adding initial fast-api

This commit is contained in:
2020-02-17 02:37:02 +00:00
commit 584d6bcc26
1975 changed files with 424591 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
.spinner4 {
position: fixed;
width: 35px;
height: 35px;
top: calc(50% - 35px/2);
left: calc(50% - 35px/2);
background-color: #fff;
animation: rotateplane 1.2s infinite ease-in-out;
}
@keyframes rotateplane {
0% {
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
} 50% {
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
} 100% {
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
}
}