cold-brew
Version:
A testing module for TDD with apps that use the RTCPeerConnection API
122 lines (112 loc) • 2.13 kB
CSS
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
* {
box-sizing: border-box;
}
h1 {
margin: 20px auto;
padding: 20px;
width: 40%;
font-size: 24px;
border: 1px solid #A2A6A7;
border-radius: 3px;
text-align: center;
color: #1E7BE2;
}
#chat-video {
display: flex;
flex-direction: row;
justify-content: space-around;
flex-wrap: wrap;
}
#text-chat {
height: 500px;
width: 400px;
border: 1px solid #A2A6A7;
border-radius: 3px;
color: #A1A1A1;
}
#chat-window {
height: 447px;
overflow: auto;
}
.message {
padding: 10px 20px 0;
}
#text-chat form {
height: 100px;
border-top: 1px solid #A2A6A7;
}
#text-chat input {
width: 316px;
height: 50px;
padding: 0;
margin: 0;
outline: 0;
border: none;
padding-left: 20px;
font-size: 12px;
color: #A1A1A1;
}
#text-chat button {
color: #FFFFFF;
width: 78px;
padding: 0;
margin: 0;
border: none;
background-color: #1E7BE2;
height: 50px;
border-bottom-right-radius: 3px;
outline: 0;
}
#remoteVideo {
height: 500px;
border-radius: 3px;
border: 1px solid #A2A6A7;
transform: rotateY(180deg);
}
#video-window {
width: 666px;
height: 500px;
}