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");
|
|
|
|
|
|
|
|
|
|
|
|
.videos {
|
2020-03-24 13:04:30 +08:00
|
|
|
display: flex;
|
|
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
2020-03-25 05:34:57 +08:00
|
|
|
padding: 0;
|
2020-03-24 13:04:30 +08:00
|
|
|
align-items: center;
|
2020-03-25 05:34:57 +08:00
|
|
|
/*padding: 0 50px;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: #16171B;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
/*background: #ececec;*/
|
2020-03-24 13:04:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
background: #292B32;
|
|
|
|
/*background: white;*/
|
|
|
|
margin: 0 5%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 10px;
|
|
|
|
padding: 0;
|
|
|
|
/*box-shadow: rgba(118, 143, 255, 0.4) 0px 16px 24px 0px;*/
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#local-video {
|
|
|
|
width: 20%;
|
|
|
|
height: auto
|
|
|
|
}
|
|
|
|
|
|
|
|
#remote-video {
|
|
|
|
width: 70%;
|
2020-03-25 06:14:05 +08:00
|
|
|
height: auto;
|
|
|
|
background-image: url(loader.gif);
|
|
|
|
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-25 06:47:10 +08:00
|
|
|
.video-overlay {
|
2020-03-25 06:14:05 +08:00
|
|
|
z-index: 1;
|
|
|
|
|
2020-03-25 05:34:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.buttons {
|
2020-03-25 06:47:10 +08:00
|
|
|
width: 700px;
|
|
|
|
margin-left: -350px;
|
2020-03-25 05:34:57 +08:00
|
|
|
bottom: 0px;
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
|
2020-03-25 06:47:10 +08:00
|
|
|
.buttons a {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-03-25 05:34:57 +08:00
|
|
|
|
|
|
|
.round-button {
|
2020-03-25 06:47:10 +08:00
|
|
|
display: block;
|
|
|
|
width: 100px;
|
|
|
|
height: 60px;
|
|
|
|
line-height: 60px;
|
2020-03-25 05:34:57 +08:00
|
|
|
border-radius: 4px;
|
|
|
|
background: #292B32;
|
2020-03-25 06:47:10 +08:00
|
|
|
text-align: center;
|
2020-03-25 05:34:57 +08:00
|
|
|
text-decoration: none;
|
|
|
|
color: white;
|
|
|
|
transition: 0.2s;
|
|
|
|
margin: 20px;
|
|
|
|
font-family: "Heebo", sans-serif;
|
|
|
|
font-weight: 400;
|
2020-03-25 06:47:10 +08:00
|
|
|
float: left;
|
2020-03-25 05:34:57 +08:00
|
|
|
}
|
2020-03-25 06:47:10 +08:00
|
|
|
|
2020-03-25 05:34:57 +08:00
|
|
|
.round-button:hover {
|
|
|
|
background: #3d3f47;
|
2020-03-24 13:04:30 +08:00
|
|
|
}
|