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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/flocking_geese/css/flocking_geese.css
diff --git a/experimental/flocking_geese/css/flocking_geese.css b/experimental/flocking_geese/css/flocking_geese.css
deleted file mode 100644
index 10411c96ba1e05aa136e3048487ca5c68e72b8cd..0000000000000000000000000000000000000000
--- a/experimental/flocking_geese/css/flocking_geese.css
+++ /dev/null
@@ -1,119 +0,0 @@
-/* Copyright 2011 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/**
- * Set up the html and body tags so that they support a view that automatically
- * resizes itself as you change the size of the browser window.
- */
-html,body {
- margin: 0;
- padding: 0;
- outline: 0;
- height: 100%;
- width: 100%;
- font-family: "Arial", "Helvetica", sans-serif;
- color: #222;
- font-size: 13px;
- line-height: 1;
- background: white;
-}
-
-body {
- line-height: 1;
- color: black;
- background: white;
- border: 0px;
- overflow: hidden;
-}
-
-body, body input, body button, body td {
- font-family: /*"Open Sans",*/"Arial", "Helvetica", sans-serif;
- color: #222;
- font-size:13px;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
-}
-
-blockquote:before, blockquote:after,
-q:before, q:after {
- content: "";
-}
-
-blockquote, q {
- quotes: "" "";
-}
-
-h1,h2,h3,h4,h5 {
- font-size: 16px;
- line-height: 24px;
- font-weight: normal;
- color: #222;
-}
-
-p {
- margin: 0 0 1em;
- font-size: 13px;
- line-height: 18px;
-}
-
-ol,ul {
- list-style: none;
-}
-
-li {
- line-height: 17px;
-}
-
-input::-moz-focus-inner {
- border: 0;
-}
-
-/**
- * The simulation view. The right margin dimensioon has to match the width
- * of the info panel (see info_panel.css).
- */
-#flocking_geese {
- display: inline;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 100%;
- margin-right: 248px;
-}
-
-/**
- * Use this class on elements inside of the DIV with id autosize_background to
- * load an autosizing NaCl module or <canvas>. E.g.:
- * <div id="autosize_background">
- * <embed class="autosize-view" type="application/x-nacl" ... />
- * </div>
- */
-.autosize-view {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
-}
-
-/**
- * Center the element vertically within its parent container. The parent
- * container needs to have a display type of "table" for this to work.
- */
-.vertical-align-center {
- margin: 0;
- padding: 0;
- vertical-align: middle;
- display: table-cell;
-}
-
-/**
- * Center the element horizontally within its parent container.
- */
-.horizontal-align-center {
- text-align: center;
- margin-left: auto;
- margin-right: auto;
-}
« 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