kizzlebot's picture
It don't look right
3dbb5a4 verified
raw
history blame contribute delete
643 Bytes
/* Custom animations */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.float-element {
animation: float 6s ease-in-out infinite;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: rgba(14, 165, 233, 0.1);
}
::-webkit-scrollbar-thumb {
background: rgba(14, 165, 233, 0.5);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(14, 165, 233, 0.7);
}
/* Selection colors */
::selection {
background: rgba(139, 92, 246, 0.3);
color: #0c4a6e;
}