123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- header {
- text-align: center;
- }
- th,
- td {
- padding: 15px;
- }
- select {
- padding: 2px 15px;
- background-color: rgb(181, 222, 255);
- font-weight: 600;
- padding: 5px 0;
- }
- select option {
- font-size: 11px;
- }
- .innerControls input {
- font-weight: normal;
- float: right;
- }
- .innerControls.permalink {
- display: inline-block;
- }
- @media (prefers-color-scheme: dark) {
- body {
- color: #ddd;
- background-color: #111;
- }
- button,
- optgroup,
- select {
- background-color: rgb(0, 40, 70);
- }
- input,
- textarea {
- background-color: #222;
- }
- label {
- font-weight: initial;
- }
- a {
- color: #337ab7;
- }
- pre {
- background-color: #050505;
- border-color: #333;
- color: #ccc;
- }
- .ace-github {
- background: #000;
- color: #fff;
- }
- .ace-github .ace_gutter {
- background: #181818;
- color: #888;
- }
- .ace-github .ace_marker-layer .ace_active-line {
- background: #111;
- }
- .ace-github.ace_focus .ace_marker-layer .ace_active-line {
- background: #321;
- }
- div.config-editor-commands {
- background-color: #444;
- border-color: #333;
- }
- button.btn {
- color: #050505;
- }
- canvas {
- background: #bbb;
- }
- }
- #controls {
- display: flex;
- flex-direction: column;
- width: 80%;
- max-width: 1200px;
- margin: 0 auto 20px auto;
- border: 1px solid #606060;
- overflow: hidden;
- }
- .demo-controls-wrapper {
- flex: 1 1 auto;
- max-width: 100%;
- padding: 5px 5px 0 3px;
- }
- .config-editor-wrapper {
- flex: 1 1 auto;
- display: flex;
- flex-direction: column;
- border-top: solid 1px #ccc;
- height: 256px;
- }
- .config-editor-container {
- flex: 1 1 auto;
- position: relative;
- width: 100%;
- height: 100%;
- }
- #config-editor {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- }
- .config-editor-commands {
- flex: 1 1 auto;
- background-color: #ddd;
- border-top: solid 1px #ccc;
- padding: 5px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .config-editor-commands label {
- margin-bottom: 0;
- }
- .config-editor-commands button {
- padding: 5px 8px;
- font-size: 14px;
- }
- .innerControls {
- display: flex;
- font-size: 12px;
- align-items: center;
- margin-bottom: 5px;
- padding-left: 5px;
- justify-content: space-between;
- }
- .videoCentered {
- width: 720px;
- margin-left: auto;
- margin-right: auto;
- display: block;
- }
- .center {
- width: 70%;
- min-width: 615px;
- overflow: hidden;
- margin-left: auto;
- margin-right: auto;
- display: block;
- }
- #toggleButtons button {
- width: 16%;
- display: inline-block;
- text-align: center;
- font-size: 10pt;
- font-weight: bolder;
- background-color: rgb(181, 222, 255);
- padding: 5px;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- #statusOut {
- height: auto;
- max-height: calc((17px * 3) + 19px);
- overflow: auto;
- }
- #errorOut {
- height: auto;
- max-height: calc((17px * 3) + 19px);
- overflow: auto;
- }
- #streamURL,
- #streamSelect {
- width: calc(100% - 4px);
- margin-left: 3px;
- }
- #streamURL {
- margin-bottom: 10px;
- padding-left: 3px;
- }
- #streamSelect {
- padding: 5px 0;
- }
- #StreamPermalink {
- overflow-wrap: break-word;
- overflow: hidden; /* for IE11 */
- }
- #StreamPermalink a {
- font-size: 10px;
- font-family: monospace;
- }
- /* Small devices (portrait tablets and large phones, 600px and up) */
- @media only screen and (min-width: 600px) {
- #controls {
- flex-direction: row;
- }
- .demo-controls-wrapper {
- max-width: 50%;
- }
- .config-editor-wrapper {
- height: auto;
- border-top: 0;
- border-left: solid 1px #ccc;
- }
- }
|