options.css 945 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. }
  11. button {
  12. background: white;
  13. border-color: rgb(191, 191, 191);
  14. border-style: solid;
  15. height: 25px;
  16. border-radius: 2px;
  17. }
  18. button:active {
  19. border-color: rgb(237, 237, 237);
  20. }
  21. #popupContent {
  22. height: auto;
  23. padding-right: 5px;
  24. }
  25. #popupContent .option {
  26. display: flex;
  27. justify-content: space-between;
  28. }
  29. #popupContent .bottom {
  30. padding-top: 20px;
  31. }
  32. input[type="checkbox"] {
  33. margin-left: 30px;
  34. position: relative;
  35. top: -2px;
  36. }
  37. button {
  38. padding-left: 10px;
  39. padding-right: 10px;
  40. }
  41. h2 {
  42. margin-bottom: 14px;
  43. margin-top: 14px;
  44. }
  45. h3 {
  46. margin-bottom: 10px;
  47. margin-top: 10px;
  48. }
  49. a {
  50. display: inline-block;
  51. padding-top: 5px;
  52. }
  53. #reloadButton {
  54. background: lightGrey;
  55. margin-left: 5px;
  56. }