1
0

options.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. body {
  2. background-color: #fff;
  3. margin-left: auto;
  4. margin-right: auto;
  5. padding: 10px;
  6. font-family: sans-serif;
  7. text-align: justify;
  8. max-width: 600px;
  9. height: auto;
  10. }
  11. button {
  12. background: white;
  13. border-color: rgb(191, 191, 191);
  14. border-style: solid;
  15. height: 25px;
  16. border-radius: 2px;
  17. padding-left: 10px;
  18. padding-right: 10px;
  19. }
  20. button:active {
  21. border-color: rgb(237, 237, 237);
  22. }
  23. input[type="checkbox"] {
  24. margin-left: 30px;
  25. position: relative;
  26. top: -2px;
  27. }
  28. input[type="number"] {
  29. margin-left: 30px;
  30. max-width: 40px;
  31. text-align: right;
  32. position: relative;
  33. top: -2px;
  34. }
  35. h3 {
  36. padding-left: 14px;
  37. margin-bottom: 10px;
  38. margin-top: 10px;
  39. }
  40. details {
  41. padding-left: 12px;
  42. padding-right: 12px;
  43. border-top: gray 1px dashed;
  44. }
  45. details:last-of-type {
  46. border-bottom: gray 1px dashed;
  47. }
  48. details>summary {
  49. margin-bottom: 10px;
  50. margin-top: 10px;
  51. min-width: 350px;
  52. cursor: pointer;
  53. }
  54. details>summary:focus {
  55. outline-width: 0px;
  56. }
  57. a {
  58. display: inline-block;
  59. padding-top: 5px;
  60. }
  61. .option.second-level {
  62. margin-left: 10px;
  63. }
  64. .option {
  65. display: flex;
  66. justify-content: space-between;
  67. margin-top: 5px;
  68. padding-left: 12px;
  69. }
  70. .option:last-of-type {
  71. padding-bottom: 12px;
  72. }
  73. .option:first-of-type {
  74. padding-top: 6px;
  75. }
  76. .option.bottom {
  77. padding-top: 24px;
  78. }