File size: 798 Bytes
55e57ba
 
 
 
6d8d061
 
55e57ba
 
6d8d061
 
55e57ba
 
 
 
 
 
 
 
 
 
6d8d061
 
55e57ba
 
6d8d061
 
55e57ba
 
6d8d061
55e57ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* 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;
    }
}