OLD | NEW |
| (Empty) |
1 /* Copyright 2011 The Native Client Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 /** | |
7 * The information panel display. Positioned at the right edge of the app | |
8 * with a fixed width of 250 pixels. Auto-adjusts its height to fill its | |
9 * parent container. | |
10 */ | |
11 #info_panel { | |
12 position: absolute; | |
13 top: 0; | |
14 right: 0; | |
15 width: 250px; | |
16 height: 100%; | |
17 background-color: black; | |
18 border-top-style: none; | |
19 border-right-style: none; | |
20 border-bottom-style: none; | |
21 border-left-style: solid; | |
22 border-color: black; | |
23 border-width: 2px; | |
24 background-image: url('../images/DialBackground.png'); | |
25 background-repeat: no-repeat; | |
26 background-position: left top; | |
27 } | |
28 | |
29 #info_panel a,p,h1,h2,h3 { | |
30 margin-left: 16px; | |
31 color: #949596; | |
32 } | |
33 | |
34 #sim_mode_select { | |
35 position: absolute; | |
36 top: 281px; | |
37 left: 58px; | |
38 } | |
39 | |
40 #flock_size_slider { | |
41 position: absolute; | |
42 top: 328px; | |
43 left: 38px; | |
44 } | |
45 | |
46 .info-notice { | |
47 font-size: 80%; | |
48 margin-left: 32px; | |
49 margin-right: 32px; | |
50 line-height: 1em; | |
51 } | |
52 | |
OLD | NEW |