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: #e2e2e2; | 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 video { | 49 .video-area { |
50 border:1px solid #ccc; | 50 background: #eee; |
51 border:1px solid #000; | |
kjellander_chromium
2013/04/18 13:29:47
nit: make the border #aaa or something like that,
jansson
2013/04/18 13:48:43
Done.
| |
52 } | |
53 | |
54 .inline-contents { | |
55 display: inline; | |
56 } | |
57 | |
58 #getusermedia-input { | |
59 width: 100%; | |
60 } | |
61 | |
62 #getusermedia-constraints { | |
63 width: 40%; | |
51 } | 64 } |
52 | 65 |
53 #wrapper { | 66 #wrapper { |
54 margin:0px auto; | 67 margin: 0px auto; |
55 padding:5px; | 68 padding: 5px; |
56 } | 69 } |
57 | 70 |
58 #container { | 71 #container { |
59 overflow: hidden; | 72 overflow: auto; |
60 width: 100%; | 73 width: 100%; |
61 } | 74 } |
62 | 75 |
63 #left { | 76 #left { |
64 float: left; | 77 float: left; |
65 } | 78 } |
66 | 79 |
67 #left-half { | 80 #left-half { |
68 float: left; | 81 float: left; |
69 width: 50%; | 82 width: 50%; |
70 } | 83 } |
71 | 84 |
72 #right-half { | 85 #right-half { |
73 width: 50%; | 86 width: 49%; |
74 margin-left: 50%; | 87 margin-left: 51%; |
75 } | 88 } |
OLD | NEW |