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

Side by Side Diff: experimental/flocking_geese/css/flocking_geese.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
« no previous file with comments | « experimental/flocking_geese/build.scons ('k') | experimental/flocking_geese/css/form_input.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 * Set up the html and body tags so that they support a view that automatically
8 * resizes itself as you change the size of the browser window.
9 */
10 html,body {
11 margin: 0;
12 padding: 0;
13 outline: 0;
14 height: 100%;
15 width: 100%;
16 font-family: "Arial", "Helvetica", sans-serif;
17 color: #222;
18 font-size: 13px;
19 line-height: 1;
20 background: white;
21 }
22
23 body {
24 line-height: 1;
25 color: black;
26 background: white;
27 border: 0px;
28 overflow: hidden;
29 }
30
31 body, body input, body button, body td {
32 font-family: /*"Open Sans",*/"Arial", "Helvetica", sans-serif;
33 color: #222;
34 font-size:13px;
35 -webkit-tap-highlight-color: rgba(0,0,0,0);
36 }
37
38 blockquote:before, blockquote:after,
39 q:before, q:after {
40 content: "";
41 }
42
43 blockquote, q {
44 quotes: "" "";
45 }
46
47 h1,h2,h3,h4,h5 {
48 font-size: 16px;
49 line-height: 24px;
50 font-weight: normal;
51 color: #222;
52 }
53
54 p {
55 margin: 0 0 1em;
56 font-size: 13px;
57 line-height: 18px;
58 }
59
60 ol,ul {
61 list-style: none;
62 }
63
64 li {
65 line-height: 17px;
66 }
67
68 input::-moz-focus-inner {
69 border: 0;
70 }
71
72 /**
73 * The simulation view. The right margin dimensioon has to match the width
74 * of the info panel (see info_panel.css).
75 */
76 #flocking_geese {
77 display: inline;
78 position: absolute;
79 top: 0;
80 left: 0;
81 right: 0;
82 height: 100%;
83 margin-right: 248px;
84 }
85
86 /**
87 * Use this class on elements inside of the DIV with id autosize_background to
88 * load an autosizing NaCl module or <canvas>. E.g.:
89 * <div id="autosize_background">
90 * <embed class="autosize-view" type="application/x-nacl" ... />
91 * </div>
92 */
93 .autosize-view {
94 position: absolute;
95 top: 0;
96 left: 0;
97 height: 100%;
98 width: 100%;
99 }
100
101 /**
102 * Center the element vertically within its parent container. The parent
103 * container needs to have a display type of "table" for this to work.
104 */
105 .vertical-align-center {
106 margin: 0;
107 padding: 0;
108 vertical-align: middle;
109 display: table-cell;
110 }
111
112 /**
113 * Center the element horizontally within its parent container.
114 */
115 .horizontal-align-center {
116 text-align: center;
117 margin-left: auto;
118 margin-right: auto;
119 }
OLDNEW
« no previous file with comments | « experimental/flocking_geese/build.scons ('k') | experimental/flocking_geese/css/form_input.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698