aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/recent/recent.css
blob: da0598db41f7b7d6d15633e549ed21babb98203f (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
.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;
}