1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #app {
- height: 100%;
- }
- .fantastic-admin-home {
- position: absolute;
- z-index: 10000;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- user-select: none;
- color: #736477;
- background-color: snow;
- }
- .fantastic-admin-home .loading {
- height: 40px;
- width: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-wrap: wrap;
- }
- .fantastic-admin-home .loading .square {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 20px;
- width: 20px;
- }
- .fantastic-admin-home .loading .square::before {
- content: "";
- width: 10px;
- height: 10px;
- border-radius: 15%;
- border: 3px solid #8c858f;
- animation: square-to-dot-animation 2s linear infinite;
- }
- .fantastic-admin-home .loading .square:nth-child(1)::before {
- animation-delay: calc(150ms * 1);
- }
- .fantastic-admin-home .loading .square:nth-child(2)::before {
- animation-delay: calc(150ms * 2);
- }
- .fantastic-admin-home .loading .square:nth-child(3)::before {
- animation-delay: calc(150ms * 3);
- }
- .fantastic-admin-home .loading .square:nth-child(4)::before {
- animation-delay: calc(150ms * 4);
- }
- @keyframes square-to-dot-animation {
- 15%,
- 25% {
- border-radius: 100%;
- width: 0;
- height: 0;
- margin: 5px;
- border-width: 5px;
- }
- 40% {
- border-radius: 15%;
- width: 10px;
- height: 10px;
- margin: initial;
- border-width: 3px;
- }
- }
- .fantastic-admin-home .text {
- position: relative;
- font-size: 24px;
- margin-top: 20px;
- }
- .fantastic-admin-home .text::after {
- content: '…';
- position: absolute;
- padding-left: 5px;
- }
|