Spaces:
Running
Running
File size: 848 Bytes
8c78f48 dd75d28 8c78f48 dd75d28 8c78f48 dd75d28 8c78f48 dd75d28 8c78f48 dd75d28 8c78f48 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | /* Custom animations */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, #3a7a5f, #4a9c8a);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(to bottom, #2a6a4f, #3a8c7a);
}
/* Smooth transitions */
html {
scroll-behavior: smooth;
}
/* Custom glow effect */
.glow {
filter: drop-shadow(0 0 8px currentColor);
}
/* Responsive typography */
@media (max-width: 640px) {
html {
font-size: 14px;
}
} |