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