options.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. #icon {
  12. width: 1em;
  13. padding-right: .3em;
  14. }
  15. button {
  16. background: white;
  17. border-color: rgb(191, 191, 191);
  18. border-style: solid;
  19. height: 25px;
  20. border-radius: 2px;
  21. }
  22. button:active {
  23. border-color: rgb(237, 237, 237);
  24. }
  25. #popupContent {
  26. height: auto;
  27. padding-right: 5px;
  28. }
  29. #popupContent .option {
  30. margin-left: 5px;
  31. margin-bottom: 12px;
  32. }
  33. #popupContent .bottom {
  34. padding-top: 20px;
  35. }
  36. input[type="checkbox"],button,input[type="text"],input[type="number"] {
  37. float: right;
  38. margin: 1px 0px;
  39. }
  40. input[type="checkbox"] {
  41. margin-top: 4px;
  42. }
  43. input[type="number"] {
  44. width: 40px;
  45. text-align: right;
  46. padding-right: 2px;
  47. }
  48. button {
  49. padding-left: 20px;
  50. padding-right: 20px;
  51. }
  52. h2 {
  53. margin-bottom: 14px;
  54. margin-top: 14px;
  55. }
  56. h3 {
  57. margin-bottom: 10px;
  58. margin-top: 10px;
  59. }
  60. a {
  61. display: inline-block;
  62. padding-top: 5px;
  63. }
  64. #reloadButton {
  65. background: lightGrey;
  66. bottom: 0px;
  67. margin: 5px;
  68. position: absolute;
  69. right: 0px;
  70. }
  71. .help {
  72. font-size: 9pt;
  73. color: LightSlateGrey;
  74. display: none;
  75. }
  76. .help p {
  77. margin-top: 0.5em;
  78. margin-bottom: 0.5em;
  79. }
  80. .question-mark {
  81. padding-left: 4px;
  82. cursor: pointer;
  83. opacity: .5;
  84. }
  85. .question-mark:hover {
  86. opacity: .8;
  87. }