uppy.css 833 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /**
  2. * Uppy CSS and all of its out-of-the-box plugins:
  3. */
  4. /**
  5. * Drag & Drop CSS to style the plugin
  6. */
  7. .UppyDragDrop {
  8. width: 300px;
  9. text-align: center;
  10. padding: 100px 10px; }
  11. /* http://tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/ */
  12. .UppyDragDrop-input {
  13. width: 0.1px;
  14. height: 0.1px;
  15. opacity: 0;
  16. overflow: hidden;
  17. position: absolute;
  18. z-index: -1; }
  19. .UppyDragDrop.is-dragdrop-supported {
  20. border: 2px dashed;
  21. border-color: #ccc; }
  22. .UppyDragDrop-label {
  23. cursor: pointer; }
  24. .UppyDragDrop-dragText {
  25. display: none; }
  26. .is-dragdrop-supported .UppyDragDrop-dragText {
  27. display: inline; }
  28. .UppyDragDrop.is-dragover {
  29. border-color: #d2ecea;
  30. background-color: #dbf5f3; }
  31. .uppy {
  32. font-family: "Comic Sans MS";
  33. color: purple;
  34. border: 1px dashed pink;
  35. font-size: 32px; }