OLD | NEW |
---|---|
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 /* Elements */ | 6 /* Elements */ |
7 a { | 7 a { |
8 color: rgb(0, 102, 204); | 8 color: rgb(0, 102, 204); |
9 text-decoration: none; | 9 text-decoration: none; |
10 } | 10 } |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
220 | 220 |
221 #main { | 221 #main { |
222 color: rgb(115, 115, 115); | 222 color: rgb(115, 115, 115); |
223 font-size: 16px; | 223 font-size: 16px; |
224 margin: 100px auto 0 auto; | 224 margin: 100px auto 0 auto; |
225 padding: 10px; | 225 padding: 10px; |
226 width: 640px; | 226 width: 640px; |
227 } | 227 } |
228 | 228 |
229 #session-mode { | 229 #session-mode { |
230 width: 100%; | 230 left: 50%; |
231 top: 50%; | |
232 position: absolute; | |
233 -webkit-box-shadow: 0 0 20px 0 black; | |
Jamie
2011/09/06 17:19:25
After consultation with Ken, I think we agreed to
Wez
2011/09/07 00:28:43
Done.
I'll let Ken know we've done this, so he ca
| |
231 -webkit-user-select: none; | 234 -webkit-user-select: none; |
232 } | 235 } |
233 | 236 |
234 #session-client-plugin { | 237 #session-client-plugin { |
235 margin: 0 0 -4px 0; | 238 margin: 0 0 -4px 0; |
236 } | 239 } |
237 | 240 |
238 #toggle-scaling { | 241 #toggle-scaling { |
239 margin: 1px 0 0 0; | 242 margin: 1px 0 0 0; |
240 padding: 1px; | 243 padding: 1px; |
241 min-width: 0; | 244 min-width: 0; |
242 line-height: 0; | 245 line-height: 0; |
243 } | 246 } |
OLD | NEW |