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