blob: 5597cd21dbc3eac156c02b722a6b475e4c3a7a38 (
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
|
.Main {
max-width: 95%;
margin: 0px auto;
}
.TitleContainer {
display: flex;
align-items: center;
justify-content: space-between;
}
.TitleContainer p {
color: white;
font-family: "Poppins";
font-size: 32px;
}
.TitleContainer img {
height: auto;
width: auto;
border-radius: 10px;
}
.DramaDescription h2 {
color: gray;
font-family: "Poppins";
}
.DramaDescription p {
font-family: "Atkinson Hyperlegible";
color: white;
margin-top: -10px;
}
.DramaGenre {
display: flex;
align-items: center;
overflow-x: auto;
}
.genreMain {
font-family: "Poppins";
color: var(--neon-green);
font-size: 18px;
}
.genreEntry {
background-color: #31313141;
color: white;
padding: 5px;
margin: 3px;
border-radius: 5px;
font-family: "Atkinson Hyperlegible";
cursor: crosshair;
}
|