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; |
-} |