aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/static/css
diff options
context:
space:
mode:
Diffstat (limited to 'alphabetlearning/static/css')
-rw-r--r--alphabetlearning/static/css/project.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/alphabetlearning/static/css/project.css b/alphabetlearning/static/css/project.css
index e0b1a1d..b90dade 100644
--- a/alphabetlearning/static/css/project.css
+++ b/alphabetlearning/static/css/project.css
@@ -226,3 +226,36 @@ header {
/* border-bottom: 10px solid #E4E5E7;*/
/* overflow: auto;*/
/*}*/
+
+/* Spinner overlay styles */
+.spinner-overlay {
+ display: none; /* Initially hidden */
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
+ z-index: 1000; /* On top of other content */
+ justify-content: center;
+ align-items: center;
+}
+
+/* Spinner animation */
+.spinner {
+ border: 6px solid #f3f3f3; /* Light gray */
+ border-top: 6px solid #3498db; /* Blue */
+ border-radius: 50%;
+ width: 50px;
+ height: 50px;
+ animation: spin 1s linear infinite;
+}
+
+@keyframes spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+}