Skip to content

Commit 4cf9410

Browse files
Update styles.css
1 parent 4845519 commit 4cf9410

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Website/styles.css

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -602,3 +602,30 @@ button#toggle-languages:hover {
602602
opacity: 0.9;
603603
}
604604

605+
/* Loading Animation CSS */
606+
.loading-container {
607+
position: fixed;
608+
top: 0;
609+
left: 0;
610+
width: 100%;
611+
height: 100%;
612+
display: flex;
613+
justify-content: center;
614+
align-items: center;
615+
background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background */
616+
z-index: 1000;
617+
}
618+
619+
.loader {
620+
border: 16px solid #f3f3f3; /* Light grey */
621+
border-top: 16px solid #3498db; /* Blue */
622+
border-radius: 50%;
623+
width: 120px;
624+
height: 120px;
625+
animation: spin 2s linear infinite;
626+
}
627+
628+
@keyframes spin {
629+
0% { transform: rotate(0deg); }
630+
100% { transform: rotate(360deg); }
631+
}

0 commit comments

Comments
 (0)