Chromium Code Reviews| 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: #e2e2e2; |
| 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 } |
| (...skipping 11 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 video { | 49 .video-area { |
| 50 border:1px solid #ccc; | 50 background: #ccc; |
|
kjellander_chromium
2013/04/12 09:58:18
Ouch, please make this a very light gray so the co
jansson
2013/04/16 14:25:17
Done.
| |
| 51 border:1px solid #000; | |
| 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 |