File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -658,6 +658,35 @@ button#toggle-languages:hover {
658
658
opacity : 0.9 ;
659
659
}
660
660
661
+
662
+ /* Loading Animation CSS */
663
+ .loading-container {
664
+ position : fixed;
665
+ top : 0 ;
666
+ left : 0 ;
667
+ width : 100% ;
668
+ height : 100% ;
669
+ display : flex;
670
+ justify-content : center;
671
+ align-items : center;
672
+ background-color : rgba (255 , 255 , 255 , 0.8 ); /* Slightly transparent background */
673
+ z-index : 1000 ;
674
+ }
675
+
676
+ .loader {
677
+ border : 16px solid # f3f3f3 ; /* Light grey */
678
+ border-top : 16px solid # 3498db ; /* Blue */
679
+ border-radius : 50% ;
680
+ width : 120px ;
681
+ height : 120px ;
682
+ animation : spin 2s linear infinite;
683
+ }
684
+
685
+ @keyframes spin {
686
+ 0% { transform : rotate (0deg ); }
687
+ 100% { transform : rotate (360deg ); }
688
+ }
689
+
661
690
/* Dark Mode Styles */
662
691
body .dark-mode {
663
692
background-color : # 121245 ;
@@ -727,3 +756,4 @@ body.dark-mode {
727
756
}
728
757
729
758
759
+
You can’t perform that action at this time.
0 commit comments