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

Side by Side Diff: samples/third_party/pop-pop-win/app_package/style.css

Issue 200723008: samples/poppopwin: upgrade to first-class sample (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixed pkgbuild.status for rename Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 body {
2 font-family: 'Slackey', cursive;
3 text-align: center;
4 background: rgb(180,173,127);
5 margin: 0;
6 font-size: 16px;
7 }
8
9 .container {
10 display: inline-block;
11 }
12
13 #popup {
14 font-family: 'Josefin Sans', serif;
15 position: relative;
16 display: none;
17 text-align: center;
18 width: 400px;
19 background: rgb(247,235,203);
20 border: 12px solid rgb(221,212,173);
21 margin: 20px;
22 box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.5);
23 }
24
25 #popup div {
26 margin: 10px;
27 }
28
29 #popup #help p {
30 text-align: left;
31 }
32
33 #popup #help img {
34 width: 140px;
35 float: left;
36 margin-right: 10px;
37 }
38
39 #loading {
40 left: 0;
41 top: 0;
42 position: relative;
43 margin: 150px auto;
44 width: 504px;
45 height: 88px;
46 }
47
48 .sprite {
49 position: absolute;
50 display: block;
51 overflow: hidden;
52 background-repeat: no-repeat;
53 background-image:url(images/transparent_static.png);
54 }
55
56 .loading_background {
57 width:504px;
58 height:88px;
59 }
60
61 .loading_bar {
62 display: none;
63 left: 51px;
64 top: 8px;
65 width:398px;
66 height:56px;
67 background-position: 0 -184px;
68 }
69
70 .loading_text {
71 left: 141px;
72 top: 10px;
73 width:218px;
74 height:56px;
75 background-position: -318px -94px;
76 }
77
78 .status {
79 font-size: 15px;
80 margin: 5px;
81 font-family: inherit;
82 font-weight: inherit;
83 }
84
85 button.status {
86 width: 120px;
87 }
88
89 span.status {
90 width: 80px;
91 display: inline-block;
92 text-align: left;
93 }
94
95 .help {
96 margin: 0;
97 display: inline-block;
98 text-align: left;
99 width: 540px;
100 }
101
102 .author {
103 margin: 10px;
104 }
105
106 canvas#gameCanvas {
107 position: absolute;
108 }
OLDNEW
« no previous file with comments | « samples/third_party/pop-pop-win/app_package/platform_app.dart ('k') | samples/third_party/pop-pop-win/lib/canvas.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698