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
@charset "utf-8";

html, body {
  margin: 0;
  width: 100%;
  text-align: center;
  background-color: #1a1a1a;
  box-sizing: border-box;
  overflow: hidden;
}

.smart-player-embed-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 852px;
  height: 0;
  overflow: hidden;
  padding-top: calc(480 / 852 * 100%);
  position: relative;
}

.smart-player-embed-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 852px;
  max-height: 480px;
}

@media screen and ( max-height: 480px )
{
   .smart-player-embed-iframe {
     max-height: 100vh;
   }
}

© Copyright 2020 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.