blob: b8946e897a56d87098e2bd1ea2ab5a201c40c64c (
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
|
.VideoContainer {
margin: 0.5rem 0 0 0;
}
.VideoContainer button {
font-family: "Lexend Deca", serif;
outline: none;
border: none;
background-color: #121212be;
color: white;
margin-right: 0.2rem;
padding: 0.5rem;
border-radius: 0.5rem;
cursor: pointer;
}
.VideoPlayer {
width: 100%;
height: 500px;
aspect-ratio: "16/9";
border: none;
outline: none;
border-radius: 0.5rem;
margin: 0.5rem 0 0 0;
}
.VideoPlayer::-webkit-scrollbar {
width: 0px;
}
|