blob: eafe792451c6317dc6a8ee4bab8f4adab712bbc0 (
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
|
.popDramasText {
color: var(--soft-purple);
font-family: "Poppins";
font-size: 28px;
margin-bottom: 10px;
}
.AnimeContainer {
display: flex;
overflow-x: auto;
}
.AnimeContainer::-webkit-scrollbar {
height: 5px;
}
.AnimeContainer::-webkit-scrollbar-track {
background-color: #3333339d;
border-radius: 5px;
}
.AnimeContainer::-webkit-scrollbar-thumb {
background-color: rgb(68, 68, 68);
border-radius: 5px;
}
/* Format the scrollbar later */
.AnimeEntry {
display: flex;
flex-direction: column;
align-items: center;
margin: 7px;
transition: transform 0.2s linear;
cursor: grab;
}
.AnimeEntry:hover {
transition: transform 0.2s linear;
transform: scale(0.97);
}
.AnimeEntry img {
border-radius: 5px;
}
.AnimeEntry p {
text-align: center;
color: white;
font-family: "Atkinson Hyperlegible";
}
|