style.css 779 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. a.hover {
  2. color: red;
  3. }
  4. #demo-list {
  5. padding: 0;
  6. list-style: none;
  7. margin: 0;
  8. }
  9. #demo-list .file-invalid {
  10. cursor: pointer;
  11. color: #514721;
  12. padding-left: 48px;
  13. line-height: 24px;
  14. background: url(assets/error.png) no-repeat 24px 5px;
  15. margin-bottom: 1px;
  16. }
  17. #demo-list .file-invalid span {
  18. background-color: #fff6bf;
  19. padding: 1px;
  20. }
  21. #demo-list .file {
  22. line-height: 2em;
  23. padding-left: 22px;
  24. background: url(assets/attach.png) no-repeat 1px 50%;
  25. }
  26. #demo-list .file span,
  27. #demo-list .file a {
  28. padding: 0 4px;
  29. }
  30. #demo-list .file .file-size {
  31. color: #666;
  32. }
  33. #demo-list .file .file-error {
  34. color: #8a1f11;
  35. }
  36. #demo-list .file .file-progress {
  37. width: 125px;
  38. height: 12px;
  39. vertical-align: middle;
  40. background-image: url(../../assets/progress-bar/progress.gif);
  41. }