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

Side by Side Diff: samples/third_party/todomvc/web/app/app.css

Issue 158083002: introduce web_components pkg for consolidated polyfills (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
1 /* base.css overrides */ 1 /* base.css overrides */
2 2
3 html, 3 html,
4 body { 4 body {
5 margin: 0; 5 margin: 0;
6 padding: 0; 6 padding: 0;
7 } 7 }
8 8
9 body { 9 body {
10 font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif; 10 font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
11 line-height: 1.4em; 11 line-height: 1.4em;
12 background: #eaeaea url('bg.png'); 12 background: #eaeaea url('bg.png');
13 color: #4d4d4d; 13 color: #4d4d4d;
14 width: 550px; 14 width: 550px;
15 margin: 0 auto; 15 margin: 0 auto;
16 -webkit-font-smoothing: antialiased; 16 -webkit-font-smoothing: antialiased;
17 -moz-font-smoothing: antialiased; 17 -moz-font-smoothing: antialiased;
18 -ms-font-smoothing: antialiased; 18 -ms-font-smoothing: antialiased;
19 -o-font-smoothing: antialiased; 19 -o-font-smoothing: antialiased;
20 /* font-smoothing: antialiased; */ 20 font-smoothing: antialiased;
21 } 21 }
22 22
23 body > header { 23 body > header {
24 padding-top: 22px; 24 padding-top: 22px;
25 margin-bottom: -5px; 25 margin-bottom: -5px;
26 } 26 }
27 27
28 h1 { 28 h1 {
29 /* position: absolute; 29 /* position: absolute;
30 top: -120px;*/ 30 top: -120px;*/
31 width: 100%; 31 width: 100%;
32 font-size: 70px; 32 font-size: 70px;
33 font-weight: bold; 33 font-weight: bold;
34 text-align: center; 34 text-align: center;
35 color: #b3b3b3; 35 color: #b3b3b3;
36 color: rgba(255, 255, 255, 0.3); 36 color: rgba(255, 255, 255, 0.3);
37 text-shadow: -1px -1px rgba(0, 0, 0, 0.2); 37 text-shadow: -1px -1px rgba(0, 0, 0, 0.2);
38 /* -webkit-text-rendering: optimizeLegibility; */ 38 -webkit-text-rendering: optimizeLegibility;
39 -moz-text-rendering: optimizeLegibility; 39 -moz-text-rendering: optimizeLegibility;
40 -ms-text-rendering: optimizeLegibility; 40 -ms-text-rendering: optimizeLegibility;
41 -o-text-rendering: optimizeLegibility; 41 -o-text-rendering: optimizeLegibility;
42 text-rendering: optimizeLegibility; 42 text-rendering: optimizeLegibility;
43 } 43 }
44 44
45 #info { 45 #info {
46 margin: 65px auto 0; 46 margin: 65px auto 0;
47 color: #a6a6a6; 47 color: #a6a6a6;
48 font-size: 12px; 48 font-size: 12px;
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 width: auto; 196 width: auto;
197 margin: 0 0 0 300px; 197 margin: 0 0 0 300px;
198 } 198 }
199 /**body*/.learn-bar > .learn { 199 /**body*/.learn-bar > .learn {
200 left: 8px; 200 left: 8px;
201 } 201 }
202 /**body*/.learn-bar #todoapp { 202 /**body*/.learn-bar #todoapp {
203 width: 550px; 203 width: 550px;
204 margin: 130px auto 40px auto; 204 margin: 130px auto 40px auto;
205 } 205 }
206 } 206 }
OLDNEW
« no previous file with comments | « samples/third_party/todomvc/test/mainpage_test.dart ('k') | tests/html/custom/attribute_changed_callback_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698