Winiry/math-o-s-dark-code-cave
0
1/* Custom scrollbar */2::-webkit-scrollbar {3 width: 8px;4}5 6::-webkit-scrollbar-track {7 background: #1E1E1E;8}9 10::-webkit-scrollbar-thumb {11 background: #6D28D9;12 border-radius: 4px;13}14 15::-webkit-scrollbar-thumb:hover {16 background: #5B21B6;17}18 19/* Smooth scrolling */20html {21 scroll-behavior: smooth;22}23 24/* Animation for sections */25section {26 opacity: 0;27 transform: translateY(20px);28 transition: opacity 0.6s ease-out, transform 0.6s ease-out;29}30 31section.visible {32 opacity: 1;33 transform: translateY(0);34}35 36/* Custom pulse animation for accent color */37@keyframes pulse {38 0%, 100% {39 opacity: 1;40 }41 50% {42 opacity: 0.5;43 }44}45 46.animate-pulse-slow {47 animation: pulse 3s infinite;48}