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

Side by Side Diff: samples/webcomponents/contactifier/contactifier.css

Issue 10964030: A variety of cleanups to bring our samples up-to-date. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 /* 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: #CC8B00;
7 font-family: 'Helvetica', sans-serif;
8 font-size: 16px;
9 font-weight: normal;
10 line-height: 1.2em;
11 margin: 15px;
12 }
13
14 h1 {
15 color: #FFD373;
16 }
17
18 h3 {
19 color: #FFD373;
20 }
21
22 #header {
23 float: center;
24 width: 60%;
25 position: relative;
26 margin: auto;
27 text-align: center;
28 top: 100px;
29 border: 4px solid #FFD373;
30 }
31
32 #contactsWidget {
33 width: 60%;
34 float: center;
35 margin: auto;
36 border: 4px solid #FFD373;
37 position: relative;
38 top: 150px;
39 color: #FFD373;
40 padding: 5px;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698