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

Unified Diff: experimental/conways_life/css/life.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
Index: experimental/conways_life/css/life.css
diff --git a/experimental/conways_life/css/life.css b/experimental/conways_life/css/life.css
deleted file mode 100644
index 32bc4d460c379e3889b7bfec0f1b12b8f9250d6a..0000000000000000000000000000000000000000
--- a/experimental/conways_life/css/life.css
+++ /dev/null
@@ -1,87 +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;
- height: 100%;
- width: 100%;
- background-color: #A9A9A9;
-}
-
-body {
- font-family: Verdana, "Lucida Grande", Arial;
- font-size: 10pt;
- border: 0px;
- overflow: hidden;
-}
-
-/**
- * The DIV with this id establishes the autosizing container for the NaCl
- * module.
- */
-#autosize_background {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
-}
-
-button.image_button {
- background-color: transparent;
- border: none;
- width: 24px; /* Default width is 24 pixels. */
-}
-
-/**
- * Use this EMBED class inside of the DIV with id @a autosize_background to
- * load an auosizing NaCl module. E.g.:
- * <div id="autosize_background">
- * <embed class="autosize" type="application/x-nacl" nacl="life.nmf"... />
- * </div>
- */
-embed.autosize {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
-}
-
-.life-view {
- position: absolute;
- /* The |top| dimension has to match the #goog-toolbar height. */
- top: 32px;
- left: 0;
- bottom: 0;
- height: auto;
- width: 100%;
- margin-bottom: 32px;
-}
-
-/**
- * Center the elemnent 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;
-}
-
-/**
- * Right-align text within its parent container.
- */
-.text-align-right {
- padding-right: 16px;
- text-align: right;
-}
-
« no previous file with comments | « experimental/conways_life/controllers/viewcontroller_test.html ('k') | experimental/conways_life/css/stamp_editor.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698