options.css 1.5 KB

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