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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 width: 100%; |
| 231 margin: 0; |
231 -webkit-user-select: none; | 232 -webkit-user-select: none; |
232 } | 233 } |
233 | 234 |
234 #session-status-msg { | 235 #session-status-msg { |
235 /* | 236 /* |
236 clear: both; forces the session-controls div to size appropriately for | 237 clear: both; forces the session-controls div to size appropriately for |
237 session-buttons. | 238 session-buttons. |
238 */ | 239 */ |
239 clear: both; | 240 clear: both; |
240 font-family: monospace; | 241 font-family: monospace; |
241 font-size: small; | 242 font-size: small; |
242 margin: 5px; | 243 margin: 5px; |
243 } | 244 } |
244 | 245 |
245 #server-response { | 246 #server-response { |
246 font-weight: bolder; | 247 font-weight: bolder; |
247 } | 248 } |
OLD | NEW |