blob: 90a33b5f619c8d47031fb0d09696350870064b44 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
.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;
}
.EpisodesContainer {
margin-top: -10px;
}
.EpisodesContainer h2 {
color: gray;
font-family: "Poppins";
}
.EpisodeButtons {
margin: -10px 5px;
}
.EpisodeButtons button {
margin: 3px;
padding: 5px;
border: none;
outline: none;
font-family: "Atkinson Hyperlegible";
font-size: 16px;
border-radius: 5px;
background-color: #3d3d3d;
transition: background-color 0.2s linear;
color: white;
cursor: pointer;
width: 100px;
}
.EpisodeButtons button:hover {
background-color: #1f1f1f;
transition: background-color 0.2s linear
}
.VideoContainer {
margin-top: 20px;
display: flex;
align-items: center;
flex-direction: column;
}
.VideoContainer p {
color: white;
font-family: "Atkinson Hyperlegible";
color: var(--neon-green);
}
.VideoPlayer {
width: 70%;
height: auto;
margin: 0px auto;
}
@media screen and (max-width: 768px) {
.VideoPlayer {
width: 100%;
}
}
|