decentralized-video-chat/public/chat.css

84 lines
1.3 KiB
CSS

@import url("https://fonts.googleapis.com/css?family=Fira+Sans:600|Heebo:400,500,700&display=swap");
.videos {
display: flex;
height: 100vh;
margin: 0;
padding: 0;
align-items: center;
/*padding: 0 50px;*/
}
body {
background: #16171B;
margin: 0;
padding: 0;
/*background: #ececec;*/
}
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%;
height: auto;
background-image: url(loader.gif);
background-size: 400px auto;
background-repeat: no-repeat;
background-position: center center;
}
.video-overlay {
z-index: 1;
}
.buttons {
width: 700px;
margin-left: -350px;
bottom: 0px;
position: absolute;
left: 50%;
}
.buttons a {
cursor: pointer;
}
.round-button {
display: block;
width: 100px;
height: 60px;
line-height: 60px;
border-radius: 4px;
background: #292B32;
text-align: center;
text-decoration: none;
color: white;
transition: 0.2s;
margin: 20px;
font-family: "Heebo", sans-serif;
font-weight: 400;
float: left;
}
.round-button:hover {
background: #3d3f47;
}