index.css 724 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. :host {
  2. margin: 5px;
  3. }
  4. h2 {
  5. color: #f90;
  6. }
  7. input {
  8. background: #222222;
  9. border: solid 1px #222222;
  10. border-radius: 3px;
  11. height: 20px;
  12. color: #bdbdbd;
  13. }
  14. button {
  15. background: #4e4e4e;
  16. border: solid 1px #252525;
  17. color: #bdbdbd;
  18. border-radius: 3px;
  19. }
  20. button:hover {
  21. background: #585858;
  22. cursor: pointer;
  23. }
  24. canvas {
  25. border: dashed 1px #585858;
  26. margin: 0 auto;
  27. }
  28. #imageList {
  29. border: solid 2px red;
  30. border-radius: 10px;
  31. width: 96%;
  32. margin: 0 auto;
  33. flex-wrap: wrap;
  34. }
  35. .overflow {
  36. width: auto;
  37. height: auto;
  38. max-height: 300px;
  39. overflow-x: scroll;
  40. }
  41. .mini {
  42. font-size: 12px;
  43. }