index.less 815 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @charset "utf-8";
  2. .file-upload.type-image {
  3. border: 1px dashed #d9d9d9;
  4. width: 100px;
  5. height: 100px;
  6. position: relative;
  7. text-align: center;
  8. display: inline-block;
  9. cursor: pointer;
  10. input {
  11. height: 100%;
  12. width: 100%;
  13. opacity: 0;
  14. position: absolute;
  15. cursor: pointer;
  16. z-index: 1;
  17. }
  18. i {
  19. font-size: 20px;
  20. line-height: 100px;
  21. }
  22. }
  23. .file-upload.type-logo {
  24. position: relative;
  25. cursor: pointer;
  26. input {
  27. position: absolute;
  28. width: 150px;
  29. height: 50px;
  30. opacity: 0;
  31. z-index: 1;
  32. cursor: pointer;
  33. }
  34. }
  35. .file-upload.type-file {
  36. position: relative;
  37. text-align: center;
  38. display: inline-block;
  39. cursor: pointer;
  40. input {
  41. height: 100%;
  42. width: 100%;
  43. opacity: 0;
  44. position: absolute;
  45. cursor: pointer;
  46. z-index: 1;
  47. }
  48. }