File size: 1,020 Bytes
f47f592
2e4bebe
f47f592
 
2e4bebe
 
f47f592
 
 
 
 
 
2e4bebe
 
f47f592
 
 
 
 
 
 
 
 
 
2e4bebe
 
f47f592
 
 
2e4bebe
 
f47f592
 
 
 
 
 
 
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
/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
}

/* Custom styles */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Animation for model cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#featured-models > div {
    animation: fadeIn 0.3s ease-out forwards;
    opacity: 0;
}

/* Delay animations for each card */
#featured-models > div:nth-child(1) { animation-delay: 0.1s; }
#featured-models > div:nth-child(2) { animation-delay: 0.2s; }
#featured-models > div:nth-child(3) { animation-delay: 0.3s; }
#featured-models > div:nth-child(4) { animation-delay: 0.4s; }
#featured-models > div:nth-child(5) { animation-delay: 0.5s; }
#featured-models > div:nth-child(6) { animation-delay: 0.6s; }