OLD | NEW |
| (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 } | |
OLD | NEW |