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
| .video-react {
| display: block;
| box-sizing: border-box;
| color: #fff;
| background-color: #000;
| position: relative;
| font-size: 10px;
| line-height: 1;
| font-family: serif, Times, "Times New Roman";
| -webkit-user-select: none;
| -moz-user-select: none;
| -ms-user-select: none;
| user-select: none;
| }
|
| .video-react *,
| .video-react *:before,
| .video-react *:after {
| box-sizing: inherit;
| }
| .video-react ul {
| font-family: inherit;
| font-size: inherit;
| line-height: inherit;
| list-style-position: outside;
| margin-left: 0;
| margin-right: 0;
| margin-top: 0;
| margin-bottom: 0;
| }
| .video-react.video-react-fluid, .video-react.video-react-16-9, .video-react.video-react-4-3 {
| width: 100%;
| max-width: 100%;
| height: 0;
| }
| .video-react.video-react-16-9 {
| padding-top: 56.25%;
| }
| .video-react.video-react-4-3 {
| padding-top: 75%;
| }
| .video-react.video-react-fill {
| width: 100%;
| height: 100%;
| }
| .video-react .video-react-video {
| position: absolute;
| top: 0;
| left: 0;
| width: 100%;
| height: 100%;
| }
|
|