File tree 3 files changed +996
-631
lines changed
3 files changed +996
-631
lines changed Original file line number Diff line number Diff line change @@ -590,4 +590,83 @@ div.copyright p {
590
590
# light {
591
591
filter : invert (0 );
592
592
/* box-shadow: none; */
593
- }
593
+ }
594
+
595
+
596
+ .loader {
597
+ position : absolute;
598
+ top : calc (50% - 32px );
599
+ left : calc (50% - 32px );
600
+ width : 64px ;
601
+ height : 64px ;
602
+ border-radius : 50% ;
603
+ perspective : 800px ;
604
+ }
605
+
606
+ .inner {
607
+ position : absolute;
608
+ box-sizing : border-box;
609
+ width : 100% ;
610
+ height : 100% ;
611
+ border-radius : 50% ;
612
+ }
613
+
614
+ .inner .one {
615
+ left : 0% ;
616
+ top : 0% ;
617
+ animation : rotate-one 1s linear infinite;
618
+ border-bottom : 3px solid # 0000fa ;
619
+ }
620
+
621
+ .inner .two {
622
+ right : 0% ;
623
+ top : 0% ;
624
+ animation : rotate-two 1s linear infinite;
625
+ border-right : 3px solid # ff4d00 ;
626
+ }
627
+
628
+ .inner .three {
629
+ right : 0% ;
630
+ bottom : 0% ;
631
+ animation : rotate-three 1s linear infinite;
632
+ border-top : 3px solid # 218702 ;
633
+ }
634
+
635
+ div .loader p {
636
+ position : relative;
637
+ font-weight : 600 ;
638
+ letter-spacing : 1px ;
639
+ top : 80px ;
640
+ left : 50% ;
641
+ transform : translate (-50% , -50% );
642
+ }
643
+
644
+ @keyframes rotate-one {
645
+ 0% {
646
+ transform : rotateX (35deg ) rotateY (-45deg ) rotateZ (0deg );
647
+ }
648
+
649
+ 100% {
650
+ transform : rotateX (35deg ) rotateY (-45deg ) rotateZ (360deg );
651
+ }
652
+ }
653
+
654
+ @keyframes rotate-two {
655
+ 0% {
656
+ transform : rotateX (50deg ) rotateY (10deg ) rotateZ (0deg );
657
+ }
658
+
659
+ 100% {
660
+ transform : rotateX (50deg ) rotateY (10deg ) rotateZ (360deg );
661
+ }
662
+ }
663
+
664
+ @keyframes rotate-three {
665
+ 0% {
666
+ transform : rotateX (35deg ) rotateY (55deg ) rotateZ (0deg );
667
+ }
668
+
669
+ 100% {
670
+ transform : rotateX (35deg ) rotateY (55deg ) rotateZ (360deg );
671
+ }
672
+ }
You can’t perform that action at this time.
0 commit comments