administraktor's picture
create me a simple html js css website landing modern looking responsive info you need are: srn-kat-title srn-l1-table-oglas srn-l1-table-oglas 2
68ada8c verified
Raw
History Blame Contribute Delete
486 Bytes
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #1e40af;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #1e3a8a;
}
/* Smooth transitions */
a, button {
transition: all 0.3s ease;
}
/* Custom animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.animate-fadeIn {
animation: fadeIn 1s ease-in-out;
}