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

Side by Side Diff: src/site/samples/dndfiles/example/dndfiles.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
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 color: #333;
9 font-family: 'Open Sans', sans-serif;
10 font-size: 14px;
11 font-weight: normal;
12 line-height: 1.2em;
13 margin: 15px;
14 }
15
16 output {
17 display: block;
18 }
19
20 #byte-content {
21 margin: 5px 0;
22 max-height: 200px;
23 overflow-x: hidden;
24 overflow-y: auto;
25 }
26
27 #byte-range {
28 margin-top: 5px;
29 }
30
31 #drop-zone {
32 border: 2px dashed #bbb;
33 -webkit-border-radius: 5px;
34 -moz-border-radius: 5px;
35 border-radius: 5px;
36 color: #bbb;
37 font-size: 20pt;
38 font-weight: bold;
39 padding: 25px;
40 text-align: center;
41 }
42
43 #drop-zone.hover {
44 background-color: #def;
45 border-color: #777;
46 color: #777;
47 }
48
49 #progress-bar {
50 background-color: #9cf;
51 border: 1px solid #000;
52 font-size: 14px;
53 margin: 10px 0;
54 opacity: 0;
55 -webkit-transition: opacity 0.5s linear;
56 -moz-transition: opacity 0.5s linear;
57 -o-transition: opacity 0.5s linear;
58 transition: opacity 0.5s linear;
59 padding: 3px;
60 }
61
62 #progress-bar.loading {
63 opacity: 1.0;
64 }
65
66 .thumb {
67 border: 1px solid #000;
68 height: 75px;
69 margin: 10px 5px 0 0;
70 }
OLDNEW
« no previous file with comments | « src/site/samples/dnd/example/packages/browser/interop.js ('k') | src/site/samples/dndfiles/example/dndfiles.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698