2020-03-25 05:34:57 +08:00
|
|
|
@import url("https://fonts.googleapis.com/css?family=Fira+Sans:600|Heebo:400,500,700&display=swap");
|
|
|
|
|
2020-03-29 00:36:59 +08:00
|
|
|
|
|
|
|
/*Fade in page on load*/
|
2020-03-29 01:30:38 +08:00
|
|
|
@-webkit-keyframes fadeIn {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes fadeIn {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-29 00:36:59 +08:00
|
|
|
/*Fade in page on load*/
|
|
|
|
|
|
|
|
|
2020-03-28 05:00:28 +08:00
|
|
|
body {
|
|
|
|
background: #16171B;
|
2020-03-24 13:04:30 +08:00
|
|
|
margin: 0;
|
2020-03-25 05:34:57 +08:00
|
|
|
padding: 0;
|
2020-03-29 01:30:38 +08:00
|
|
|
opacity: 0; /* make things invisible upon start */
|
|
|
|
-webkit-animation: fadeIn ease-in 1;
|
|
|
|
-moz-animation: fadeIn ease-in 1;
|
|
|
|
animation: fadeIn ease-in 1;
|
|
|
|
-webkit-animation-fill-mode: forwards;
|
|
|
|
-moz-animation-fill-mode: forwards;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
-webkit-animation-duration: 0.3s;
|
|
|
|
-moz-animation-duration: 0.3s;
|
|
|
|
animation-duration: 0.3s;
|
2020-03-25 05:34:57 +08:00
|
|
|
}
|
|
|
|
|
2020-03-29 00:06:29 +08:00
|
|
|
|
|
|
|
video {
|
|
|
|
background: #16171a;
|
|
|
|
}
|
|
|
|
|
2020-03-29 00:36:59 +08:00
|
|
|
#header {
|
|
|
|
position: absolute;
|
|
|
|
color: white;
|
|
|
|
font-family: "Fira Sans", sans-serif;
|
|
|
|
font-weight: 600;
|
|
|
|
white-space: nowrap;
|
|
|
|
top: 40px;
|
|
|
|
left: 80px;
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-top: 30px;
|
|
|
|
-ms-transform: translate(-50%, -50%);
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header p, img {
|
|
|
|
float: left;
|
|
|
|
padding: 7px;
|
|
|
|
}
|
|
|
|
|
2020-03-29 01:35:06 +08:00
|
|
|
#header, a {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2020-03-29 00:36:59 +08:00
|
|
|
|
2020-03-29 00:06:29 +08:00
|
|
|
#moveable {
|
|
|
|
z-index: 100;
|
|
|
|
position: absolute;
|
|
|
|
width: 15%;
|
|
|
|
cursor: move;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-03-29 01:30:38 +08:00
|
|
|
|
2020-03-29 00:06:29 +08:00
|
|
|
#moveable p {
|
|
|
|
z-index: 101;
|
2020-03-28 05:00:28 +08:00
|
|
|
position: absolute;
|
2020-03-29 00:06:29 +08:00
|
|
|
color: white;
|
|
|
|
font-family: "Heebo", sans-serif;
|
|
|
|
white-space: nowrap;
|
2020-03-28 05:00:28 +08:00
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
-ms-transform: translate(-50%, -50%);
|
|
|
|
transform: translate(-50%, -50%);
|
2020-03-29 00:06:29 +08:00
|
|
|
font-weight: bold;
|
2020-03-29 01:30:38 +08:00
|
|
|
background: rgba(0, 0, 0, 0.12);
|
2020-03-29 00:06:29 +08:00
|
|
|
padding: 10px;
|
2020-03-29 01:30:38 +08:00
|
|
|
border-radius: 5px;
|
2020-03-24 13:04:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#local-video {
|
2020-03-29 00:06:29 +08:00
|
|
|
width: 100%;
|
2020-03-27 12:31:21 +08:00
|
|
|
height: auto;
|
2020-03-28 05:00:28 +08:00
|
|
|
border-radius: 20px;
|
2020-03-27 12:31:21 +08:00
|
|
|
-webkit-transform: scaleX(-1);
|
|
|
|
transform: scaleX(-1);
|
2020-03-28 02:06:07 +08:00
|
|
|
background: #16171a;
|
2020-03-24 13:04:30 +08:00
|
|
|
}
|
|
|
|
|
2020-03-29 00:06:29 +08:00
|
|
|
#remote-video-text {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: calc(40%);
|
|
|
|
left: 50%;
|
|
|
|
-ms-transform: translate(-50%, -50%);
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
color: white;
|
|
|
|
font-family: "Heebo", sans-serif;
|
|
|
|
white-space: nowrap;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-03-24 13:04:30 +08:00
|
|
|
#remote-video {
|
2020-03-29 00:06:29 +08:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
-ms-transform: translate(-50%, -50%);
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
width: 70%;
|
|
|
|
height: auto;
|
|
|
|
|
2020-03-28 05:00:28 +08:00
|
|
|
max-height: 100%;
|
|
|
|
max-width: 100%;
|
2020-03-29 00:06:29 +08:00
|
|
|
|
2020-03-28 05:00:28 +08:00
|
|
|
border-radius: 10px;
|
2020-03-27 12:13:45 +08:00
|
|
|
background-image: url(../images/loader.gif);
|
2020-03-25 06:14:05 +08:00
|
|
|
background-size: 400px auto;
|
2020-03-25 06:47:10 +08:00
|
|
|
background-repeat: no-repeat;
|
2020-03-25 06:14:05 +08:00
|
|
|
background-position: center center;
|
2020-03-28 02:06:07 +08:00
|
|
|
box-shadow: 9px 9px 16px #0a0b0c, -9px -9px 16px #222328;
|
2020-03-26 05:57:54 +08:00
|
|
|
|
2020-03-28 02:06:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*Neomorphic buttons*/
|
|
|
|
button {
|
|
|
|
border: none;
|
|
|
|
font-size: 2rem;
|
|
|
|
transition: all .3s ease-in-out;
|
|
|
|
color: gray;
|
|
|
|
background: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2020-03-29 01:43:08 +08:00
|
|
|
button:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-03-28 02:06:07 +08:00
|
|
|
button:hover {
|
|
|
|
color: white;
|
|
|
|
border-radius: 100px;
|
|
|
|
background: #16171a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.multi-button {
|
|
|
|
position: absolute;
|
2020-03-29 01:30:38 +08:00
|
|
|
left: calc(5vw - 40px);
|
2020-03-29 00:06:29 +08:00
|
|
|
top: calc(50vh - 175px);
|
2020-03-28 02:06:07 +08:00
|
|
|
z-index: 999;
|
|
|
|
border-radius: 10px;
|
|
|
|
background: #16171a;
|
|
|
|
box-shadow: 9px 9px 16px #0a0b0c, -9px -9px 16px #222328;
|
|
|
|
padding: 15px;
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 0.5rem;
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.HoverState {
|
|
|
|
color: white;
|
|
|
|
font-family: "Heebo", sans-serif;
|
|
|
|
position: absolute;
|
2020-03-29 01:30:38 +08:00
|
|
|
left: 70px;
|
2020-03-28 02:06:07 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
top: 25px;
|
|
|
|
font-weight: bold;
|
2020-03-28 05:00:28 +08:00
|
|
|
background: #16171a;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 10px;
|
2020-03-28 02:06:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.buttonContainer {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2020-03-29 00:36:59 +08:00
|
|
|
/*Neomorphic buttons*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|