blob: cf79acc523b3ad7e4aed0749f57adcdeb3ba08f6 (
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
|
.main {
width: 99%;
margin: 80px auto;
}
.mainText {
color: var(--light-green);
font-size: 24px;
}
.animeContainer {
font-size: 18px;
margin: 0px;
}
.animeEntry {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px;
margin-bottom: 0.5rem;
border-radius: 1rem;
background-color: #1f1f1f;
}
.animeEntry img {
width: 10%;
height: auto;
border-radius: 0.8rem;
}
.titleContainer {
color: white;
margin-left: 0.2rem;
}
.titleContainer h3 {
margin: 0px;
}
.EpisodeCount {
color: var(--soft-purple);
margin: 0px;
}
.date {
color: var(--neon-yellow);
margin: 0px;
}
@media screen and (max-width: 768px) {
.animeContainer {
font-size: 14px;
}
.animeEntry img {
width: 35%;
}
}
|