dropzone.css 521 B

12345678910111213141516171819202122232425
  1. #dropzone {
  2. background: #ccccc;
  3. width: 150px;
  4. height: 50px;
  5. line-height: 50px;
  6. text-align: center;
  7. font-weight: bold;
  8. }
  9. #dropzone.in {
  10. width: 600px;
  11. height: 200px;
  12. line-height: 200px;
  13. font-size: larger;
  14. }
  15. #dropzone.hover {
  16. background: lawngreen;
  17. }
  18. #dropzone.fade {
  19. -webkit-transition: all 0.3s ease-out;
  20. -moz-transition: all 0.3s ease-out;
  21. -ms-transition: all 0.3s ease-out;
  22. -o-transition: all 0.3s ease-out;
  23. transition: all 0.3s ease-out;
  24. opacity: 1;
  25. }