File size: 1,022 Bytes
4cb0a1e eb621b6 4cb0a1e eb621b6 4cb0a1e eb621b6 4cb0a1e eb621b6 4cb0a1e eb621b6 4cb0a1e |
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #020617;
}
::-webkit-scrollbar-thumb {
background: #7e22ce;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #6b21a8;
}
/* Animations */
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
.float-animation {
animation: float 6s ease-in-out infinite;
}
/* Custom Styles */
.hero-glass {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.hover-glow:hover {
box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}
.text-gradient {
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1rem;
}
} |