@@ -614,6 +614,46 @@ body.dark-mode #dark-mode-toggle:hover {
614614 box-shadow : 0 4px 12px rgba (100 , 100 , 255 , 0.2 );
615615}
616616
617+ /* ShitCode Button Styles */
618+ # shitcode-button {
619+ position : fixed;
620+ top : 10px ;
621+ right : 290px ;
622+ padding : 0.5rem 1rem ;
623+ background : rgba (255 , 255 , 255 , 0.2 );
624+ color : # ffffff ;
625+ border : 2px solid rgba (255 , 255 , 255 , 0.3 );
626+ border-radius : 8px ;
627+ cursor : pointer;
628+ z-index : 2 ;
629+ font-family : 'Poppins' , sans-serif;
630+ font-weight : 500 ;
631+ font-size : 0.9rem ;
632+ transition : all 0.3s ease;
633+ backdrop-filter : blur (10px );
634+ }
635+
636+ # shitcode-button : hover {
637+ background : rgba (255 , 111 , 97 , 0.4 );
638+ transform : translateY (-2px );
639+ box-shadow : 0 4px 12px rgba (255 , 111 , 97 , 0.4 );
640+ }
641+
642+ # shitcode-button : active {
643+ transform : translateY (0 );
644+ }
645+
646+ body .dark-mode # shitcode-button {
647+ background : rgba (45 , 55 , 72 , 0.5 );
648+ color : # e2e8f0 ;
649+ border-color : rgba (226 , 232 , 240 , 0.3 );
650+ }
651+
652+ body .dark-mode # shitcode-button : hover {
653+ background : rgba (255 , 69 , 0 , 0.4 );
654+ box-shadow : 0 4px 12px rgba (255 , 69 , 0 , 0.4 );
655+ }
656+
617657/* Adjust button positions for smaller screens */
618658@media (max-width : 768px ) {
619659 # music-toggle {
@@ -626,10 +666,19 @@ body.dark-mode #dark-mode-toggle:hover {
626666 padding : 0.3rem 0.7rem ;
627667 font-size : 0.8rem ;
628668 }
669+ # shitcode-button {
670+ top : 5px ;
671+ right : 230px ;
672+ padding : 0.3rem 0.7rem ;
673+ font-size : 0.8rem ;
674+ }
629675}
630676
631677@media (max-width : 480px ) {
632678 # dark-mode-toggle {
633679 right : 115px ; /* Further adjust for very small screens to prevent overlap with music toggle */
634680 }
681+ # shitcode-button {
682+ right : 215px ;
683+ }
635684}
0 commit comments