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

Side by Side Diff: samples/slider/slider_sample.css

Issue 11142015: update hello, world sample and remove slider (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: after merge with master Created 8 years, 2 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
« no previous file with comments | « samples/slider/README ('k') | samples/slider/slider_sample.dart » ('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 /* Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file */
2 /* for details. All rights reserved. Use of this source code is governed by a */
3 /* BSD-style license that can be found in the LICENSE file. */
4
5 body {
6 background-color: #F8F8F8;
7 font-family: 'Open Sans', sans-serif;
8 font-size: 14px;
9 font-weight: normal;
10 line-height: 1.2em;
11 margin: 15px;
12 }
13
14 p {
15 color: #333;
16 }
17
18 #container {
19 width: 100%;
20 height: 400px;
21 position: relative;
22 border: 1px solid #ccc;
23 background-color: #fff;
24 }
25
26 #summary {
27 float: left;
28 }
29
30 #notes {
31 float: right;
32 width: 120px;
33 text-align: right;
34 }
35
36 .error {
37 font-style: italic;
38 color: red;
39 }
40
41 #container2 {
42 width: 100px;
43 height: 100px;
44 position: relative;
45 margin: auto;
46 }
47
48 #target {
49 width: 100%;
50 height: 100%;
51 position: absolute;
52 }
53
54 #target figure {
55 display: block;
56 position: absolute;
57 width: 150px;
58 height: 80px;
59 border: 1px solid #333;
60 font-size: 36px;
61 color: #222;
62 background: #3291d8;
63 text-align: center;
64 line-height: 2em;
65 }
66
67 #message {
68 margin-top: 20px;
69 font-size: 16px;
70 }
OLDNEW
« no previous file with comments | « samples/slider/README ('k') | samples/slider/slider_sample.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698