dropbox.css 610 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #dropbox {
  2. position: relative;
  3. }
  4. #dropbox > input {
  5. position: absolute;
  6. top: 0px;
  7. right: 0px;
  8. bottom: 0px;
  9. left: 0px;
  10. width: 100%;
  11. height: 100%;
  12. opacity: 0;
  13. }
  14. #dropbox > input:hover, #dropbox:hover {
  15. cursor: pointer;
  16. }
  17. #dropbox {
  18. padding: 15px 0px;
  19. border: 2px solid #ddd;
  20. text-align: center;
  21. color: #999;
  22. font-size: 1.3em;
  23. font-family: Arial, sans-serif;
  24. transition: background-color 0.15s;
  25. }
  26. #dropbox.active {
  27. border-color: #3a3;
  28. color: #777;
  29. background-color: #dfd;
  30. }
  31. .upload-progress {
  32. margin-bottom: 10px;
  33. }
  34. .upload-progress .desc {
  35. font-size: 0.85em;
  36. color: #555;
  37. }