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 } |
(...skipping 28 matching lines...) Expand all Loading... |
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 #error { |
| 50 overflow: auto; |
| 51 } |
| 52 |
| 53 #messages { |
| 54 overflow: auto; |
| 55 } |
| 56 |
49 .drop-down { | 57 .drop-down { |
50 width: 10%; | 58 width: 10%; |
51 } | 59 } |
52 | 60 |
53 .video-area { | 61 .video-area { |
54 background: #eee; | 62 background: #eee; |
55 border:1px solid #aaa; | 63 border:1px solid #aaa; |
56 } | 64 } |
57 | 65 |
58 .inline-contents { | 66 .inline-contents { |
59 display: inline; | 67 display: inline; |
60 } | 68 } |
61 | 69 |
62 #getusermedia-input { | 70 #getusermedia-input { |
63 width: 100%; | 71 width: 100%; |
64 } | 72 } |
65 | 73 |
66 #getusermedia-constraints { | 74 #getusermedia-constraints { |
67 width: 40%; | 75 width: 40%; |
68 } | 76 } |
69 | 77 |
70 #wrapper { | 78 #wrapper { |
71 margin: 0px auto; | 79 margin: 0px auto; |
72 padding: 5px; | 80 padding: 5px; |
73 } | 81 } |
74 | 82 |
75 #container { | 83 #container { |
76 overflow: auto; | 84 overflow: auto; |
77 width: 100%; | 85 width: 100%; |
| 86 height: 96%; |
78 } | 87 } |
79 | 88 |
80 #left { | 89 #left { |
81 float: left; | 90 float: left; |
82 } | 91 } |
83 | 92 |
84 #left-half { | 93 #left-half { |
85 float: left; | 94 float: left; |
86 width: 50%; | 95 width: 50%; |
87 } | 96 } |
88 | 97 |
89 #right-half { | 98 #right-half { |
90 width: 49%; | 99 width: 49%; |
91 margin-left: 51%; | 100 margin-left: 51%; |
92 } | 101 } |
OLD | NEW |