options.css 1.6 KB

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