@import "./loader.css";

html, body {
    font-family: 'Roboto', sans-serif;
    background: rgb(31,30,35);
    background: linear-gradient(0deg, rgba(31,30,35,1) 0%, rgba(27,26,30,1) 100%);
    color: #FFFFFF;
    padding: 0;
    margin: 0;
}

#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
}

#init-container {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -125px 0 0 -250px;
    width: 500px;
    text-align: left;
    background: #FFFFFF;
    color: #2b2b2b;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

#init-container img {
    width: 250px;
}

#init-container .text {
    float: right;
    width: 50%;
    margin-top: 30px;
}

#init-container .text a {
    color: #3f3f3f;
}

#init-container .code-block {
    margin-top: 24px;
}

#init-container .code {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.connect {
    text-align: center;
}

.connect input {
    width: 50px;
}

#appbar {
    line-height: 40px;
    background: #EEEEEE;
    color: #2b2b2b;
    box-sizing: border-box;
    padding: 7px;
}

.logout {
    background: transparent;
    position: absolute;
    bottom: 8px;
    right: 8px;
    color: #EEEEEE;
}

video {
    width: 100%;
    max-width: 500px;
}

#appbar .app {
    font-weight: bold;
    width: 30%;
    overflow: hidden;
}

.user {
    width: 70%;
    display: inline-block;
    text-align: right;
}

.email {
    max-width: 50%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}

.name {
    max-width: 50%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    box-sizing: border-box;
    padding: 7px;
    border-bottom: #ccc 1px solid;
}
