maralvic's picture
Alterar os thumbnails para outros que tenham relação com os temas; buscar as imagens em static.photos ; usar o padrão do site na url marcelovicente.prof
b532718 verified
raw
history blame contribute delete
602 Bytes
/* Custom styles that complement Tailwind */
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #4f46e5;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #4338ca;
}
/* Animation for cards */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 0.5s ease-out forwards;
}