39 lines
662 B
CSS
39 lines
662 B
CSS
/* Custom Scrollbars */
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: #020617;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #1e293b;
|
|
border-radius: 4px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #334155;
|
|
}
|
|
|
|
@keyframes pulseGlow {
|
|
0%, 100% {
|
|
box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
|
|
}
|
|
50% {
|
|
box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
|
|
}
|
|
}
|
|
|
|
.glow-card {
|
|
animation: pulseGlow 4s infinite ease-in-out;
|
|
}
|
|
|
|
@keyframes spinFan {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.fan-spinning {
|
|
display: inline-block;
|
|
animation: spinFan 1s linear infinite;
|
|
}
|