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

Side by Side Diff: src/site/samples/appcache/example/appcache.css

Issue 30853002: Added several more HTML5 samples (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Created 7 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
« no previous file with comments | « .gitignore ('k') | src/site/samples/appcache/example/appcache.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 /*
2 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 for details. All rights reserved. Use of this source code is governed by a
4 BSD-style license that can be found in the LICENSE file.
5 */
6
7 body {
8 background: #f7f7f7;
9 color: #333;
10 }
11
12 h1, p {
13 font-family: 'Open Sans', Arial;
14 }
15
16 h1 {
17 margin-bottom: 40px;
18 }
19
20 code {
21 color: #b33;
22 font-weight: bold;
23 }
24
25 #content {
26 background: #fff;
27 border: 1px solid #e1e1e1;
28 -webkit-border-radius: 8px;
29 -moz-border-radius: 8px;
30 border-radius: 8px;
31 -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
32 -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
33 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
34 margin: 40px auto;
35 padding: 40px;
36 width: 880px;
37 }
OLDNEW
« no previous file with comments | « .gitignore ('k') | src/site/samples/appcache/example/appcache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698