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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: src/site/samples/dndfiles/example/dndfiles.css
diff --git a/src/site/samples/dndfiles/example/dndfiles.css b/src/site/samples/dndfiles/example/dndfiles.css
new file mode 100644
index 0000000000000000000000000000000000000000..09edf026c476c69ea686a0768d613cb0b3337023
--- /dev/null
+++ b/src/site/samples/dndfiles/example/dndfiles.css
@@ -0,0 +1,70 @@
+/*
+ Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+ for details. All rights reserved. Use of this source code is governed by a
+ BSD-style license that can be found in the LICENSE file.
+*/
+
+body {
+ color: #333;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 14px;
+ font-weight: normal;
+ line-height: 1.2em;
+ margin: 15px;
+}
+
+output {
+ display: block;
+}
+
+#byte-content {
+ margin: 5px 0;
+ max-height: 200px;
+ overflow-x: hidden;
+ overflow-y: auto;
+}
+
+#byte-range {
+ margin-top: 5px;
+}
+
+#drop-zone {
+ border: 2px dashed #bbb;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ color: #bbb;
+ font-size: 20pt;
+ font-weight: bold;
+ padding: 25px;
+ text-align: center;
+}
+
+#drop-zone.hover {
+ background-color: #def;
+ border-color: #777;
+ color: #777;
+}
+
+#progress-bar {
+ background-color: #9cf;
+ border: 1px solid #000;
+ font-size: 14px;
+ margin: 10px 0;
+ opacity: 0;
+ -webkit-transition: opacity 0.5s linear;
+ -moz-transition: opacity 0.5s linear;
+ -o-transition: opacity 0.5s linear;
+ transition: opacity 0.5s linear;
+ padding: 3px;
+}
+
+#progress-bar.loading {
+ opacity: 1.0;
+}
+
+.thumb {
+ border: 1px solid #000;
+ height: 75px;
+ margin: 10px 5px 0 0;
+}
« 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