aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/top-airing/trending.module.css
blob: 3aa1ee74efb71841eb50054e66564ad2c00d8011 (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
.TrendingText {
	display: flex;
	align-items: center;
}

.TrendingText p {
	font-size: 26px;
	margin: 5px;
	color: var(--soft-purple);
	font-family: "Poppins";
}

.TrendingText span {
	margin-top: 6px;
}

.trending {
	display: flex;
	overflow-x: auto;
}

.trending::-webkit-scrollbar {
	height: 5px;
}

.trending::-webkit-scrollbar-thumb {
	background-color: #444444;
	border-radius: 5px;
}

.trendingEntries {
	margin: 7px;
	transition: transform 0.2s linear;
}

.trendingEntries:hover {
	transition: transform 0.2s linear;
	transform: scale(0.97);
}

.trendingEntries p {
	text-align: center;
	margin: 5px auto;
	width: 140px;
	font-family: "Atkinson Hyperlegible";
}

.trendingEntries p::-webkit-scrollbar {
	width: 5px;
}

.trendingEntries p::-webkit-scrollbar-thumb {
	background-color: #444444;
	border-radius: 5px;
}

.trendingImage {
	border-radius: 5px;
	aspect-ratio: auto;
}