File size: 2,206 Bytes
14a31b5 12a9e8b 14a31b5 12a9e8b 14a31b5 12a9e8b 14a31b5 12a9e8b 14a31b5 12a9e8b 14a31b5 |
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
/* Custom animations and styles */
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
@keyframes text-shine {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
@keyframes scroll {
0% { transform: translateY(0); opacity: 1; }
100% { transform: translateY(10px); opacity: 0; }
}
/* Custom styles */
.animate-float {
animation: float 6s ease-in-out infinite;
}
.animate-text-shine {
background-size: 200% auto;
animation: text-shine 3s linear infinite;
}
.animate-scroll {
animation: scroll 2s ease-in-out infinite;
}
/* Particles canvas styling */
#particles-js {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 0;
}
/* Counter animation */
.counter {
transition: all 0.3s ease-out;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(45deg, #06b6d4, #8b5cf6);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(45deg, #0891b2, #7c3aed);
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Focus styles */
input:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1), 0 0 0 1px rgba(6, 182, 212, 0.5);
}
/* Glass morphism effect */
.glass {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
/* Gradient border */
.gradient-border {
position: relative;
background: linear-gradient(90deg, #06b6d4, #8b5cf6, #ec4899);
padding: 2px;
border-radius: 1rem;
}
.gradient-border > * {
background: #111827;
border-radius: calc(1rem - 2px);
}
/* Hover effects */
.hover-lift {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
/* Loading animation */
@keyframes spin {
to { transform: rotate(360deg); }
}
.animate-spin-slow {
animation: spin 3s linear infinite;
} |