blob: d046ce4ff5c73e5b2e2584297e2983d4855352e3 (
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
.Main {
max-width: 98%;
margin: 80px auto;
}
.TitleContainer {
display: flex;
align-items: center;
justify-content: space-between;
}
.TitleContainer p {
color: white;
font-family: "Lexend Deca", serif;
font-size: 30px;
}
.TitleContainer img {
border-radius: 0.5rem;
}
.DramaDescription h2 {
color: gray;
font-family: "Lexend Deca", serif;
}
.DramaDescription p {
font-family: "Atkinson Hyperlegible", serif;
color: white;
margin-top: -10px;
}
.DramaGenre {
display: flex;
align-items: center;
overflow-x: auto;
}
.DramaGenre::-webkit-scrollbar {
height: 5px;
}
.DramaGenre::-webkit-scrollbar-thumb {
background-color: var(--soft-purple);
border-radius: 1rem;
}
.genreMain {
font-family: "Lexend Deca", serif;
color: var(--neon-green);
font-size: 18px;
}
.genreEntry {
background-color: #31313141;
color: white;
padding: 5px;
margin: 3px;
border-radius: 5px;
font-family: "Lexend Deca", serif;
cursor: crosshair;
}
.EpisodesContainer {
margin-top: -10px;
}
.EpisodesContainer h2 {
color: gray;
font-family: "Lexend Deca", serif;
}
.EpisodeButtons {
margin: -10px 5px;
}
.EpisodeButtons button {
margin: 3px;
padding: 5px;
border: none;
outline: none;
border-radius: 5px;
background-color: #3d3d3d;
transition: background-color 0.2s linear;
color: white;
cursor: pointer;
width: 100px;
}
.EpisodeButtons button p {
text-align: center;
font-family: "Poppins", serif;
margin: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.EpisodeButtons button:hover {
background-color: #1f1f1f;
transition: background-color 0.2s linear
}
.VideoContainer {
margin-top: 20px;
}
.Video {
display: flex;
flex-direction: column;
align-items: center;
width: 70dvw;
margin: 0px auto;
}
.Video p {
color: white;
font-family: "Atkinson Hyperlegible", serif;
color: var(--pastel-red);
}
.VideoPlayer {
margin: 0px auto;
width: auto;
height: auto;
font-family: "Lexend Deca", serif;
}
@media screen and (max-width: 768px) {
.Video {
width: 100%;
}
.EpisodeButtons button {
font-size: 14px;
width: 80px;
}
}
|