123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- /*Copyright Epic Games, Inc. All Rights Reserved.*/
- :root {
- /*Using colour scheme https://color.adobe.com/TD-Colors---Option-3-color-theme-10394433/*/
- --colour1:#2B3A42;
- --colour2:#3F5765;
- --colour3:#BDD4DE;
- --colour4:#EFEFEF;
- --colour5:#FF5035;
-
- --buttonFont:Helvetica;
- --inputFont:Helvetica;
- }
- body{
- margin: 0px;
- background-color: black;
- }
- #playerUI {
- width: 100%;
- position: absolute;
- /*top: 0;
- left: 0;*/
- z-index: 10;
- }
- .statsContainer {
- background-color: rgba(0,0,0,0.8);
- text-align: left;
- display: block;
- margin-top: 5px;
- }
- .stats {
- font-size: 14px;
- font-weight: bold;
- padding: 6px;
- color: lime;
- }
- canvas{
- image-rendering: crisp-edges;
- position: absolute;
- }
- video{
- position: absolute;
- width: 100%;
- height: 100%;
- }
- #player{
- }
- #overlay{
- -moz-border-radius-bottomright: 5px;
- -moz-border-radius-bottomleft: 5px;
- -webkit-border-bottom-right-radius: 5px;
- -webkit-border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px; /* future proofing */
- border-bottom-left-radius: 5px; /* future proofing */
- -khtml-border-bottom-right-radius: 5px; /* for old Konqueror browsers */
- -khtml-border-bottom-left-radius: 5px; /* for old Konqueror browsers */
-
- -webkit-touch-callout: none; /* iOS Safari */
- -webkit-user-select: none; /* Safari */
- -khtml-user-select: none; /* Konqueror HTML */
- -moz-user-select: none; /* Firefox */
- -ms-user-select: none; /* Internet Explorer/Edge */
- user-select: none; /* Non-prefixed version, currently
- supported by Chrome and Opera */
-
- position: absolute;
- padding: 4px;
- top: 0;
- right: 2%;
- z-index: 100;
- border: 2px solid var(--colour4);
- border-top-width: 0px;
- }
- .overlay {
- background-color: var(--colour2);
- font-family: var(--buttonFont);
- font-weight: lighter;
- color: var(--colour4);
- }
- .overlay-shown > #overlaySettings {
- padding: 50px 4px 4px 4px;
- display: block;
- }
- .overlay-shown > div > #overlayButton {
- transform: rotate(-135deg);
- -webkit-transform: rotate(-135deg); /* Safari */
- -moz-transform: rotate(-135deg); /* Firefox */
- -ms-transform: rotate(-135deg); /* IE */
- -o-transform: rotate(-135deg); /* Opera */
- }
- #overlayButton:hover{
- cursor: pointer;
- }
- #overlayButton{
- transition-duration: 250ms;
- float: right;
- text-align: right;
- font-size: 40px;
- }
- #qualityStatus{
- float: left;
- font-size: 37px;
- padding-right: 4px;
- }
- #overlaySettings{
- width: 400px;
- display: none;
- }
- .greyStatus {
- color: grey;
- }
- .limeStatus {
- color: lime;
- }
- .orangeStatus {
- color: orange;
- }
- .redStatus {
- color: red;
- }
- #videoMessageOverlay{
- z-index: 20;
- color: var(--colour4);;
- font-size: 1.8em;
- position: absolute;
- margin: auto;
- font-family: var(--inputFont);;
- width: 100%;
- }
- #videoPlayOverlay{
- z-index: 30;
- position: absolute;
- color: var(--colour4);
- font-size: 1.8em;
- font-family: var(--inputFont);
- width: 100%;
- height: 100%;
- background-color: rgba(100, 100, 100, 0.7);
- }
- /* State for element to be clickable */
- .clickableState{
- align-items: center;
- justify-content: center;
- display: flex;
- cursor: pointer;
- }
- /* State for element to show text, this is for informational use*/
- .textDisplayState{
- display: flex;
- }
- /* State to hide overlay, WebRTC communication is in progress and or is playing */
- .hiddenState{
- display: none;
- }
- #playButton{
- display: inline-block;
- height: auto;
- }
- img#playButton{
- max-width: 241px;
- width: 10%;
- }
- #UIInteraction{
- position: fixed;
- }
- #UIInteractionButtonBoundary{
- padding: 2px;
- }
- #UIInteractionButton{
- cursor: pointer;
- }
- #hiddenInput{
- position: absolute;
- left: -10%; /* Although invisible, push off-screen to prevent user interaction. */
- width: 0px;
- opacity: 0;
- }
- #editTextButton{
- position: absolute;
- height: 40px;
- width: 40px;
- }
- .settings-text{
- color: var(--colour4);
- vertical-align: middle;
- font-size: 18px;
- font-weight: normal;
- display: inline-block;
- }
- .overlay-button{
- line-height: 1.1;
- padding: 1px 6px;
- }
- .btn-overlay{
- float: right;
- vertical-align: middle;
- display: inline-block;
- }
- .btn-flat{
- background: var(--colour4);
- border: 2px solid var(--colour5);
- font-weight: bold;
- cursor: pointer;
- font-family: var(--buttonFont);
- font-size: 10px;
- color: var(--colour5);
- border-radius: 5px;
- height: 20px;
- }
- .btn-flat:disabled{
- background: var(--colour4);
- border-color: var(--colour3);
- color: var(--colour3);
- cursor: default;
- }
- .btn-flat:active{
- border-color: var(--colour2);
- color: var(--colour2);
- }
- .btn-flat:focus{
- outline: none;
- }
- /*** Toggle Switch styles ***/
- .tgl-switch {
- float: right;
- vertical-align: middle;
- display: inline-block;
- }
- .tgl-switch .tgl {
- display:none;
- }
- .tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-slider {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- .tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-slider::-moz-selection {
- background: none;
- }
- .tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-slider::selection {
- background: none;
- }
- .tgl-slider {
- float:right;
- }
- .tgl + .tgl-slider {
- outline: 0;
- display: block;
- width: 40px;
- height: 18px;
- position: relative;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .tgl + .tgl-slider:after, .tgl + .tgl-slider:before {
- position: relative;
- display: block;
- content: "";
- width: 50%;
- height: 100%;
- }
- .tgl + .tgl-slider:after {
- left: 0;
- }
- .tgl + .tgl-slider:before {
- display: none;
- }
- .tgl-flat + .tgl-slider {
- padding: 2px;
- -webkit-transition: all .2s ease;
- transition: all .2s ease;
- background: #fff;
- border: 3px solid var(--colour4);
- border-radius: 2em;
- }
- .tgl-flat + .tgl-slider:after {
- -webkit-transition: all .2s ease;
- transition: all .2s ease;
- background: var(--colour4);
- content: "";
- border-radius: 1em;
- }
- .tgl-flat:checked + .tgl-slider {
- border: 3px solid var(--colour5);
- }
- .tgl-flat:checked + .tgl-slider:after {
- left: 50%;
- background: var(--colour5);
- }
- /*** Toggle Switch styles ***/
- #encoderSettings, #webRTCSettings {
- margin: 10px 0px;
- }
- #encoderParamsContainer, #webrtcParamsContainer {
- padding-left: 5%;
- }
- #encoder-params-submit {
- float: right;
- }
- #webrtc-params-submit {
- float: right;
- }
- select {
- text-align: right;
- }
- .form-group {
- display: grid;
- grid-template-columns: 50% 50%;
- }
- .form-group label {
- color: var(--colour4);
- vertical-align: middle;
- font-size: 18px;
- font-weight: normal;
- }
- #latencyTest {
- display: block;
- }
- #latencyTest button {
- margin: 30px 0px;
- }
- #freezeFrameOverlay {
- background-color: transparent;
- }
- .freezeframeBackground {
- background-color: #000 !important;
- }
|