main.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html {
  5. scroll-behavior: smooth;
  6. }
  7. body {
  8. font-family: "sans";
  9. background-color: #222222;
  10. background-image: url("../imgs/bg.png");
  11. background-position: -10% -10%;
  12. background-repeat: repeat;
  13. background-attachment: fixed;
  14. color: white;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. a {
  19. /*color: #87decd;*/
  20. color: lightgreen;
  21. }
  22. form {
  23. padding: 0;
  24. margin: 0;
  25. }
  26. h1, h2, h3, h4, h5, h6 {
  27. text-align: center;
  28. color: white;
  29. }
  30. p {
  31. margin: 0;
  32. color: white;
  33. text-indent: 3mm;
  34. /*text-align: justify;
  35. -webkit-hyphens: auto;
  36. -ms-hyphens: auto;
  37. hyphens: auto;*/
  38. }
  39. .firstp {
  40. text-indent: 0;
  41. }
  42. input:focus, textarea:focus, button:focus {
  43. outline: none;
  44. }
  45. #main {
  46. margin-left: auto;
  47. margin-right: auto;
  48. max-width: 20cm;
  49. width: 100%;
  50. padding: 3mm;
  51. }
  52. .error, .success, .warning, .neutral, .normtext {
  53. width: 100%;
  54. color: red;
  55. margin-bottom: 15px;
  56. border: 1px solid red;
  57. border-radius: 6px;
  58. padding: 3mm;
  59. }
  60. .neutral {
  61. color: white;
  62. border-color: white;
  63. }
  64. .warning {
  65. color: orange;
  66. border-color: orange;
  67. }
  68. .success {
  69. color: lightgreen;
  70. border-color: lightgreen;
  71. }
  72. .normtext {
  73. background-color: #444444;
  74. color: white;
  75. border: none;
  76. }
  77. .hili {
  78. color: yellow;
  79. }
  80. .tittab {
  81. border-collapse: collapse;
  82. width: 100%;
  83. border: none;
  84. }
  85. .tittab tr {
  86. margin: 0;
  87. padding: 0;
  88. }
  89. .tittab td {
  90. margin: 0;
  91. padding: 1mm;
  92. vertical-align: middle;
  93. }
  94. .closeb {
  95. cursor: pointer;
  96. top: 3px;
  97. vertical-align: middle;
  98. }
  99. .inputdiv, .lastinputdiv, .outputdiv, .lastoutputdiv {
  100. width: 100%;
  101. }
  102. .inputdiv {
  103. margin-bottom: 15px;
  104. }
  105. .lastoutputdiv {
  106. margin-top: 15px;
  107. }
  108. .input, .inputx, .textarea, .button, .halfbutton, .copybutton, .output, .outputnobb, .outputli, .posthead, .lastborder, fieldset {
  109. width: 100%;
  110. border: 1px solid #555555;
  111. border-radius: 0 6px 6px 6px;
  112. font-size: 12pt;
  113. margin: 0;
  114. padding: 3px;
  115. }
  116. .input, .inputx, .textarea {
  117. font-family: "sans";
  118. }
  119. .inputx {
  120. border-radius: 0 6px 0 0;
  121. }
  122. .lastborder {
  123. border-top: none;
  124. border-radius: 0 0 6px 6px;
  125. }
  126. fieldset {
  127. padding: 6px;
  128. margin-top: 2px;
  129. }
  130. .halfbutton {
  131. width: 50%;
  132. height: 30px;
  133. border-radius: 6px;
  134. }
  135. .button, .copybutton {
  136. height: 40px;
  137. border-radius: 6px;
  138. font-weight: bold;
  139. }
  140. .copybutton {
  141. border-top: none;
  142. border-radius: 0 0 6px 6px;
  143. }
  144. .output, .outputnobb {
  145. border-radius: 0;
  146. margin: 0;
  147. font-family: "sans";
  148. }
  149. .outputnobb {
  150. border-bottom: none;
  151. }
  152. .outputli {
  153. border-radius: 0 0 6px 6px;
  154. }
  155. label {
  156. max-width: 96%;
  157. font-weight: bold;
  158. color: white;
  159. background-color: #555555;
  160. border-bottom: none;
  161. border-radius: 6px 6px 0 0;
  162. padding: 2px 6px 3px 6px;
  163. display: inline-block;
  164. margin: 0;
  165. }
  166. .cblab {
  167. background-color: rgba(0, 0, 0, 0);
  168. font-weight: normal;
  169. display: table-cell;
  170. }
  171. .posthead, .errposthead {
  172. font-weight: bold;
  173. font-size: 12pt;
  174. margin-bottom: 0;
  175. border-bottom: none;
  176. border-radius: 6px 6px 0 0;
  177. color: white;
  178. background-color: #555555;
  179. padding: 3px 6px 3px 6px;
  180. margin-top: 15px;
  181. }
  182. .errposthead {
  183. background-color: red;
  184. }
  185. .horsep {
  186. width: 100%;
  187. height: 25px;
  188. }
  189. #footer, #almfooter {
  190. width: 100%;
  191. text-align: center;
  192. font-size: 9pt;
  193. margin: 3mm 0 0 0;
  194. }
  195. #almfooter {
  196. font-size: 10.5pt;
  197. }