Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: experimental/flocking_geese/css/info_panel.css

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « experimental/flocking_geese/css/form_input.css ('k') | experimental/flocking_geese/css/load_progress.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698