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; |
+} |