blob: d092a7fd90342ac8220125c6dbc4915286f3d9c1 (
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
|
.animeButtonContainer {
margin-top: 1rem;
}
.dramaButton {
background-color: #1f1f1fd2;
outline: none;
border: none;
color: white;
font-family: "Atkinson Hyperlegible", serif;
width: 50px;
padding: 0.5rem;
margin: 0 0.2rem 0.2rem 0;
border-radius: 0.5rem;
cursor: pointer;
transition: background-color 200ms ease, scale 200ms ease;
}
.dramaButton:hover {
background-color: #121212;
scale: 0.95;
}
.dramaButton:focus {
background-color: var(--soft-purple);
scale: 0.95;
}
.Main {
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
}
.SelectClass {
text-align: center;
outline: none;
border: none;
padding: 0.4rem;
font-family: "Lexend Deca", serif;
background-color: #1f1f1fd2;
color: white;
border-radius: 0.5rem;
}
.SelectClass::-webkit-scrollbar {
width: 0;
}
/* Video Player */
.videoPopUp {
height: 100dvh;
width: 100dvw;
background-color: #141414ee;
position: fixed;
bottom: 0;
left: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 1;
overflow-y: auto;
}
.closeButton {
font-family: "Lexend Deca", serif;
font-size: 16px;
background-color: var(--pastel-red);
padding: 0.5rem 1.5rem;
border: 0;
outline: 0;
border-radius: 0.5rem;
cursor: pointer;
margin: 5px;
}
.video {
width: 60vw;
}
.VideoPlayer {
width: 100%;
}
|