SettingsPanel.css 1009 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. input[type="checkbox"] {
  2. cursor: pointer;
  3. }
  4. table {
  5. width: 100%;
  6. }
  7. .panel-container {
  8. position: absolute;
  9. top: calc(20%);
  10. left: calc(50% - 165px);
  11. width: 330px;
  12. height: auto;
  13. border-radius: 4px;
  14. border: 1px solid rgba(0, 0, 0, 0.7);
  15. background-color: rgba(255, 255, 255, 0.7);
  16. z-index: 1000;
  17. overflow: hidden;
  18. }
  19. .panel-container:hover {
  20. background-color: rgba(255, 255, 255, 1);
  21. }
  22. .panel-hide {
  23. visibility: hidden;
  24. }
  25. .panel-close-btn {
  26. position: absolute;
  27. top: 10px;
  28. right: 20px;
  29. font-size: 16px;
  30. cursor: pointer;
  31. }
  32. .panel-header {
  33. display: flex;
  34. align-items: center;
  35. padding-left: 6px;
  36. width: 100%;
  37. height: 40px;
  38. border-bottom: 1px solid #ccc;
  39. background-color: #00000022;
  40. }
  41. .panel-body {
  42. width: 100%;
  43. margin: 3px;
  44. }
  45. .color-input {
  46. width: 24px;
  47. height: 16px;
  48. border: 1px solid gray;
  49. margin: 2px;
  50. cursor: pointer;
  51. font-size: 0px; /* do not see the text at all */
  52. }