source: imaps-frontend/src/App.css@ 0c6b92a

main
Last change on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 643 bytes
Line 
1
2
3body {
4 margin: 0;
5 padding: 0;
6 height: 100%;
7 background: white;
8 backdrop-filter: blur(10px);
9}
10.loading-container {
11 display: flex;
12 flex-direction: column;
13 justify-content: center;
14 align-items: center;
15 height: 100vh;
16 background-color: #f7f9fc;
17}
18
19.spinner {
20 border: 8px solid #f3f3f3;
21 border-top: 8px solid #1e90ff;
22 border-radius: 50%;
23 width: 60px;
24 height: 60px;
25 animation: spin 1s linear infinite;
26}
27
28@keyframes spin {
29 0% {
30 transform: rotate(0deg);
31 }
32 100% {
33 transform: rotate(360deg);
34 }
35}
36
37.loading-container p {
38 margin-top: 20px;
39 font-size: 18px;
40 color: #2c3e50;
41 font-weight: 500;
42}
Note: See TracBrowser for help on using the repository browser.