blob: aaca306b368f83db079c3e32753cd607f3370a25 (
plain) (
blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
.trendingContainer {
display: flex;
flex-direction: column;
}
.trendingText {
color: #FEFFAC;
font-family: "Open Sans";
font-size: 26px;
margin: 10px;
}
.trending {
width: 98%;
display: flex;
flex-direction: row;
overflow-x: auto;
margin: 0px auto;
}
/* Customize scrollbar here */
.trending::-webkit-scrollbar {
height: 5px;
}
.trendingEntries {
margin: 10px 10px 5px 5px;
text-align: center;
cursor: pointer;
transition: transform 0.2s ease;
}
.trendingEntries:hover {
transform: scale(1.03);
}
.trendingEntries img {
border-radius: 10px;
width: 150px;
height: 210px;
}
.trendingEntries p {
color: white;
max-height: 60px;
max-width: 150px;
overflow-y: auto;
font-family: "Lato";
margin: 10px auto;
font-size: 16px;
}
.trendingEntries p::-webkit-scrollbar{
width: 5px;
}
@media (prefers-color-scheme: light) {
.trendingText {
color: black;
}
.trendingEntries p {
color: black;
}
}
|