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
| .mainContainer {
| display: block;
| width: 100%;
| margin-left: auto;
| margin-right: auto;
| }
| @media screen and (min-width: 1152px) {
| .mainContainer {
| display: block;
| width: 1152px;
| margin-left: auto;
| margin-right: auto;
| }
| }
|
| .video-container {
| position: relative;
| margin-top: 8px;
| }
|
| .video-container:before {
| display: block;
| content: "";
| width: 100%;
| padding-bottom: 56.25%;
| }
|
| .video-container > div {
| position: absolute;
| top: 0;
| left: 0;
| right: 0;
| bottom: 0;
| }
|
| .video-container video {
| width: 100%;
| height: 100%;
| }
|
| .urlInput {
| display: block;
| width: 100%;
| margin-left: auto;
| margin-right: auto;
| margin-top: 8px;
| margin-bottom: 8px;
| }
|
| .centeredVideo {
| display: block;
| width: 100%;
| height: 100%;
| margin-left: auto;
| margin-right: auto;
| margin-bottom: auto;
| }
|
| .controls {
| display: block;
| width: 100%;
| text-align: left;
| margin-left: auto;
| margin-right: auto;
| margin-top: 8px;
| margin-bottom: 10px;
| }
|
| .logcatBox {
| border-color: #CCCCCC;
| font-size: 11px;
| font-family: Menlo, Consolas, monospace;
| display: block;
| width: 100%;
| text-align: left;
| margin-left: auto;
| margin-right: auto;
| }
|
| .url-input , .options {
| font-size: 13px;
| }
|
| .url-input {
| display: flex;
| }
|
| .url-input label {
| flex: initial;
| }
|
| .url-input input {
| flex: auto;
| margin-left: 8px;
| }
|
| .url-input button {
| flex: initial;
| margin-left: 8px;
| }
|
| .options {
| margin-top: 5px;
| }
|
| .hidden {
| display: none;
| }
|
|