blob: f44776fecf15e835dc3ce567e81fca176e8dee89 (
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
|
.Main {
margin: 1.5rem 0 0 0;
}
.EpisodeSeasonInput {
display: flex;
align-items: center;
justify-content: center;
}
.EpisodeSeasonInput input {
padding: 0.6rem;
margin: 0 0.2rem 0 0.2rem;
border: none;
outline: none;
background-color: #121212a6;
border-radius: 0.5rem;
font-family: "Lexend Deca", serif;
color: white;
}
.EpisodeSeasonInput button {
padding: 0.5rem;
border: none;
outline: none;
border-radius: 0.5rem;
background-color: #121212a6;
color: white;
cursor: pointer;
font-family: "Atkinson Hyperlegible", serif;
}
.EpisodeSeasonInput input::placeholder {
color: gray;
}
.VideoPlayer iframe {
margin: 1rem 0 2.5rem 0;
width: 100%;
height: 400px;
border-radius: 0.5rem;
border: none;
outline: none;
}
.VideoPlayer p {
color: white;
margin: 0.5rem 0 0 0;
text-align: center;
font-size: 12px;
}
@media screen and (max-width: 768px) {
.EpisodeSeasonInput {
width: 80%;
margin: 0px auto;
}
.VideoPlayer iframe {
width: 100%;
height: 300px;
margin-bottom: 50px;
}
.EpisodeSeasonInput input {
padding: 0.4rem;
}
.EpisodeSeasonInput button {
padding: 0.3rem 0.4rem 0.3rem 0.4rem;
font-size: 14px;
}
}
|