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 30 matching lines...) Expand all Loading... | |
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 { |
50 border:1px solid #ccc; | 50 border:1px solid #ccc; |
51 background: #C0C0C0; | |
52 } | |
53 | |
54 #getusermedia-input { | |
kjellander_chromium
2013/04/08 14:19:52
Add a class to be used for the div tags that surro
jansson
2013/04/10 12:11:48
I've added a class but I'm not happy with the over
jansson
2013/04/10 12:11:48
I added a class for the video stuff, however it's
| |
55 width: 100%; | |
56 } | |
57 | |
58 #getusermedia-constraints { | |
59 width: 40%; | |
60 } | |
61 | |
62 #local-view-size { | |
kjellander_chromium
2013/04/08 14:19:52
I suggest using a CSS class for this instead, like
jansson
2013/04/10 12:11:48
Done.
| |
63 display: inline; | |
64 } | |
65 | |
66 #local-view-stream-size { | |
67 display: inline; | |
68 } | |
69 | |
70 #remote-view-size { | |
71 display: inline; | |
72 } | |
73 | |
74 #remote-view-stream-size { | |
75 display: inline; | |
51 } | 76 } |
52 | 77 |
53 #wrapper { | 78 #wrapper { |
54 margin:0px auto; | 79 margin:0px auto; |
55 padding:5px; | 80 padding:5px; |
56 } | 81 } |
57 | 82 |
58 #container { | 83 #container { |
59 overflow: hidden; | 84 overflow: hidden; |
60 width: 100%; | 85 width: 100%; |
61 } | 86 } |
62 | 87 |
63 #left { | 88 #left { |
64 float: left; | 89 float: left; |
65 } | 90 } |
66 | 91 |
67 #left-half { | 92 #left-half { |
68 float: left; | 93 float: left; |
69 width: 50%; | 94 width: 50%; |
70 } | 95 } |
71 | 96 |
72 #right-half { | 97 #right-half { |
73 width: 50%; | 98 width: 50%; |
74 margin-left: 50%; | 99 margin-left: 50%; |
75 } | 100 } |
OLD | NEW |