-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstylesheet.css
125 lines (101 loc) · 1.47 KB
/
stylesheet.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/**
* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
body, td {
font-family: Helvetica Narrow, sans-serif;
font-size: 11px;
}
h1, h2, h3 {
margin: 6px 0px 3px 0px;
}
a {
text-decoration: none;
}
pre {
background-color: #eee;
margin-right: 20px;
}
a:hover {
text-decoration: underline;
}
textarea {
font-size: 11px;
font-family: monospace, Courier;
border: 1px solid #ccc;
}
button {
font-size: 11px;
margin-left: 0px;
}
input[type=text] {
border: 1px solid #ccc;
}
input[type=checkbox] {
position: relative;
top: 2px;
}
video {
background: #eee;
border:1px solid #aaa;
}
.drop-down {
width: 10%;
}
.left {
float: left;
width: 50%;
}
.right {
width: 49%;
margin-left: auto;
position: relative;
}
.inline-contents {
display: inline;
}
.button-green {
background: #064;
color: #FFF;
}
.button-red {
background: #B22;
color: #FFF;
}
.width-100 {
width: 100%;
}
#wrapper {
margin: 0px auto;
padding: 5px;
}
#header {
position: fixed;
overflow: auto;
width: 100%;
height: 50px;
}
#container {
position: fixed;
overflow: auto;
width: 100%;
height: 99%;
margin-top: 50px;
}
#footer {
overflow: auto;
width: 100%;
height: 50%;
}
#getusermedia-constraints {
width: 40%;
}
#debug {
overflow: auto;
word-wrap: break-word;
}
#messages {
overflow: auto;
word-wrap: break-word;
}