dfw-creator-connect / style.css
tonynwright's picture
create a classified site for creators in dallas fort worth
55e57ba verified
/* Custom styles that extend Tailwind */
.category-card:hover i {
transform: scale(1.1);
transition: transform 0.2s ease-in-out;
}
.category-card i {
transition: transform 0.2s ease-in-out;
}
/* Animation for featured creators cards */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.custom-creator-card {
animation: fadeIn 0.5s ease-out forwards;
}
.custom-creator-card:nth-child(1) {
animation-delay: 0.1s;
}
.custom-creator-card:nth-child(2) {
animation-delay: 0.2s;
}
.custom-creator-card:nth-child(3) {
animation-delay: 0.3s;
}
/* Responsive tweaks */
@media (max-width: 640px) {
.testimonial-card {
margin-bottom: 1rem;
}
}