options.css 967 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. }
  30. #popupContent .bottom {
  31. padding-top: 20px;
  32. }
  33. input[type="checkbox"] {
  34. margin-left: 30px;
  35. position: relative;
  36. top: -2px;
  37. }
  38. button {
  39. padding-left: 10px;
  40. padding-right: 10px;
  41. }
  42. h2 {
  43. margin-bottom: 14px;
  44. margin-top: 14px;
  45. }
  46. h3 {
  47. margin-bottom: 10px;
  48. margin-top: 10px;
  49. }
  50. a {
  51. display: inline-block;
  52. padding-top: 5px;
  53. }
  54. #reloadButton {
  55. background: lightGrey;
  56. margin-left: 5px;
  57. }