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

Side by Side Diff: experimental/webgtt/webgtt.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/webgtt/webgtt.cc ('k') | experimental/webgtt/webgtt.html » ('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 /*
2 * Copyright 2011 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 /*
8 * Rudimentary CSS for WebGTT
9 */
10
11 body {
12 background-color:#CED8F6;
13 color:black;
14 }
15
16 h1, p, .pane, .tile {
17 text-align:center;
18 }
19
20 canvas
21 {
22 border:3px solid red;
23 background-color:#CEECF5;
24 }
25
26 .pane, .tile {
27 padding:10px;
28 }
29
30 .pane
31 {
32 border:2px solid purple;
33 margin:5px;
34 }
35
36 .tile
37 {
38 border:1px solid green;
39 margin:0px;
40 }
41
42 #intro.pane
43 {
44 width:1663px;
45 }
46
47 #control p
48 {
49 width:800px;
50 }
51
52 #control.pane, #canvas.pane {
53 float:left;
54 }
55
56 /*
57 * This functionality is not yet implemented, so hide these elements for now.
58 */
59 #settings, #shortestPathTile {
60 display:none;
61 }
OLDNEW
« no previous file with comments | « experimental/webgtt/webgtt.cc ('k') | experimental/webgtt/webgtt.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698