options.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. body {
  2. background-color: #fff;
  3. }
  4. body>div {
  5. margin-left: auto;
  6. margin-right: auto;
  7. padding: 10px;
  8. font-family: sans-serif;
  9. text-align: justify;
  10. max-width: 600px;
  11. }
  12. button {
  13. background: white;
  14. border-color: rgb(191, 191, 191);
  15. border-style: solid;
  16. height: 25px;
  17. border-radius: 2px;
  18. }
  19. button:active {
  20. border-color: rgb(237, 237, 237);
  21. }
  22. #popupContent {
  23. height: auto;
  24. padding-right: 5px;
  25. }
  26. #popupContent .option {
  27. display: flex;
  28. justify-content: space-between;
  29. margin-top: 5px;
  30. }
  31. #popupContent .bottom {
  32. padding-top: 20px;
  33. }
  34. input[type="checkbox"] {
  35. margin-left: 30px;
  36. position: relative;
  37. top: -2px;
  38. }
  39. input[type="number"] {
  40. margin-left: 30px;
  41. max-width: 40px;
  42. text-align: right;
  43. position: relative;
  44. top: -2px;
  45. }
  46. button {
  47. padding-left: 10px;
  48. padding-right: 10px;
  49. }
  50. h2 {
  51. margin-bottom: 14px;
  52. margin-top: 14px;
  53. }
  54. h3 {
  55. margin-bottom: 10px;
  56. margin-top: 10px;
  57. }
  58. a {
  59. display: inline-block;
  60. padding-top: 5px;
  61. }
  62. #reloadButton {
  63. background: lightGrey;
  64. margin-left: 5px;
  65. }