source: imaps-frontend/src/App.css

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

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