File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -602,3 +602,30 @@ button#toggle-languages:hover {
602
602
opacity : 0.9 ;
603
603
}
604
604
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
+ }
You can’t perform that action at this time.
0 commit comments