blob: 4216b375170c6cb15bc2ec96a0ab1e1ef820213a (
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
67
68
69
70
71
72
73
74
75
|
.main {
width: 50%;
margin: 60px auto;
color: white;
}
.AnimeHeroSection {
display: flex;
align-items: center;
}
.AnimeHeroSection strong {
color: var(--neon-yellow);
}
.AnimeHeroSection img {
width: auto;
height: auto;
padding: 0.5rem 0.7rem 0.5rem 0.7rem;
border-radius: 1rem;
}
.animeDescription {
max-height: 100px;
overflow: auto;
color: var(--light-sky);
}
.animeDescription::-webkit-scrollbar {
width: 3px;
}
.animeDescription::-webkit-scrollbar-thumb {
background-color: var(--nord-yellow);
border-radius: 1rem;
}
.AnimeHeroSection p {
margin: 0;
}
.animeTitle {
font-size: 28px;
color: var(--neon-green);
}
@media screen and (max-width: 1024px) {
.main {
width: 100%;
}
.AnimeHeroSection {
font-size: 14px;
}
.animeTitle {
font-size: 24px;
}
.AnimeHeroSection img {
padding: 0.4rem 0.4rem 0.4rem 0.4rem;
}
}
@media screen and (max-width: 425px) {
.AnimeHeroSection {
display: flex;
align-items: center;
flex-direction: column;
}
.animeTitle {
text-align: center;
}
}
|