main.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html {
  5. scroll-behavior: smooth;
  6. }
  7. body {
  8. font-family: "sans";
  9. font-size: 12pt;
  10. background-color: #222222;
  11. color: white;
  12. margin: 0;
  13. padding: 0;
  14. }
  15. a {
  16. color: #87decd;
  17. }
  18. form {
  19. padding: 0;
  20. margin: 0;
  21. }
  22. h1, h2, h3, h4, h5, h6 {
  23. margin: 3mm 0 5mm 0;
  24. padding: 0;
  25. text-align: center;
  26. color: white;
  27. }
  28. p {
  29. margin: 0;
  30. color: white;
  31. text-indent: 3mm;
  32. /*text-align: justify;
  33. -webkit-hyphens: auto;
  34. -ms-hyphens: auto;
  35. hyphens: auto;*/
  36. }
  37. .firstp {
  38. text-indent: 0;
  39. }
  40. .ul {
  41. padding-left: 5mm;
  42. margin-bottom: 0;
  43. }
  44. .notset {
  45. color: #555555;
  46. }
  47. input:focus, textarea:focus, button:focus {
  48. outline: none;
  49. }
  50. #main {
  51. margin-left: auto;
  52. margin-right: auto;
  53. max-width: 20cm;
  54. width: 100%;
  55. padding: 3mm;
  56. }
  57. #notif {
  58. width: 6cm;
  59. position: fixed;
  60. right: 3mm;
  61. bottom: 3mm;
  62. background-color: #16502d;
  63. color: white;
  64. border: 1px solid white;
  65. padding: 3mm;
  66. border-radius: 6px;
  67. display: none;
  68. font-size: 10pt;
  69. cursor: pointer;
  70. }
  71. #popup {
  72. display: none;
  73. align-items: center;
  74. position: fixed;
  75. top: 0;
  76. width: 100%;
  77. height: 100vh;
  78. z-index: 1;
  79. background-color: rgba(0, 0, 0, .75);
  80. }
  81. #popupmsg {
  82. margin-left: auto;
  83. margin-right: auto;
  84. max-width: 98%;
  85. width: 15cm;
  86. }
  87. #puptitle {
  88. border-radius: 9px 9px 0 0;
  89. padding: 0;
  90. background-color: white;
  91. color: black;
  92. font-weight: bold;
  93. }
  94. #pupmsg {
  95. border-radius: 0 0 9px 9px;
  96. border: 1px solid white;
  97. border-top: 0;
  98. padding: 1.5mm 3mm 1.5mm 3mm;
  99. background-color: #555555;
  100. color: white;
  101. }
  102. #pupmsg ul {
  103. margin: 0;
  104. margin-left: 3mm;
  105. padding: 0;
  106. }
  107. .error, .success, .warning, .normtext {
  108. width: 100%;
  109. color: red;
  110. margin-bottom: 15px;
  111. border: 1px solid red;
  112. border-radius: 6px;
  113. padding: 3mm;
  114. }
  115. .warning {
  116. color: orange;
  117. border-color: orange;
  118. }
  119. .success {
  120. color: lightgreen;
  121. border-color: lightgreen;
  122. }
  123. .normtext {
  124. background-color: #555555;
  125. color: white;
  126. border: none;
  127. }
  128. .hili {
  129. color: #ffcc00;
  130. }
  131. .tittab {
  132. border-collapse: collapse;
  133. width: 100%;
  134. border: none;
  135. }
  136. .tittab tr {
  137. margin: 0;
  138. padding: 0;
  139. }
  140. .tittab td {
  141. margin: 0;
  142. padding: 1mm;
  143. vertical-align: middle;
  144. }
  145. .closeb {
  146. cursor: pointer;
  147. top: 3px;
  148. vertical-align: middle;
  149. }
  150. .inputdiv, .lastinputdiv, .outputdiv, .lastoutputdiv {
  151. width: 100%;
  152. }
  153. .inputdiv {
  154. margin-bottom: 15px;
  155. }
  156. .lastoutputdiv {
  157. margin-top: 15px;
  158. }
  159. .input, .inputx, .textarea, .button, .postbutton, .halfbutton, .copybutton, .output, .outputnobb, .outputli, .posthead, .lastborder, fieldset {
  160. width: 100%;
  161. border: 1px solid #555555;
  162. border-radius: 0 6px 6px 6px;
  163. font-size: 12pt;
  164. margin: 0;
  165. padding: 3px;
  166. }
  167. .input, .inputx, .textarea {
  168. font-family: "sans";
  169. }
  170. .inputx {
  171. border-radius: 0 6px 0 0;
  172. }
  173. .lastborder {
  174. border-top: none;
  175. border-radius: 0 0 6px 6px;
  176. }
  177. fieldset {
  178. padding: 5px;
  179. }
  180. .halfbutton {
  181. width: 50%;
  182. height: 30px;
  183. border-radius: 6px;
  184. }
  185. .button, .postbutton, .copybutton {
  186. height: 40px;
  187. border-radius: 6px;
  188. font-weight: bold;
  189. }
  190. .button, .postbutton {
  191. color: white;
  192. background-color: #916f7c;
  193. border-color: #ac939d #6c535d #6c535d #ac939d;
  194. }
  195. .button:hover, .postbutton:hover {
  196. background-color: #6c535d;
  197. border-color: #916f7c #48373e #48373e #916f7c;
  198. }
  199. .copybutton {
  200. border-top: none;
  201. border-radius: 0 0 6px 6px;
  202. display: none;
  203. }
  204. .output, .outputnobb {
  205. border-radius: 0;
  206. margin: 0;
  207. font-family: "sans";
  208. }
  209. .outputnobb {
  210. background-color: white;
  211. color: black;
  212. border-bottom: none;
  213. }
  214. .outputli {
  215. border-radius: 0 0 6px 6px;
  216. }
  217. label {
  218. max-width: 96%;
  219. font-weight: bold;
  220. color: white;
  221. background-color: #555555;
  222. border-bottom: none;
  223. border-radius: 6px 6px 0 0;
  224. padding: 2px 6px 3px 6px;
  225. display: inline-block;
  226. margin: 0;
  227. }
  228. .trow {
  229. display: table-row;
  230. }
  231. .tcell {
  232. display: table-cell;
  233. }
  234. .cblab {
  235. background-color: rgba(0, 0, 0, 0);
  236. font-weight: normal;
  237. display: table-cell;
  238. }
  239. .posthead, .errposthead {
  240. font-weight: bold;
  241. margin-bottom: 0;
  242. border-bottom: none;
  243. border-radius: 6px 6px 0 0;
  244. color: white;
  245. background-color: #555555;
  246. padding: 3px 6px 3px 6px;
  247. margin-top: 15px;
  248. }
  249. .errposthead {
  250. background-color: red;
  251. }
  252. .separator {
  253. width: 100%;
  254. height: 25px;
  255. }
  256. .pseparator {
  257. width: 100%;
  258. height: 40px;
  259. }
  260. .postdiv, .postdivnobut {
  261. border: 1px solid #555555;
  262. background-color: white;
  263. color: black;
  264. padding: 3px;
  265. }
  266. .postdivnobut {
  267. border-radius: 0 0 6px 6px;
  268. }
  269. .fullheight {
  270. min-height: 90vh;
  271. }
  272. hr {
  273. height: 1px;
  274. background-color: #555555;
  275. color: #555555;
  276. border: none;
  277. }
  278. .debug {
  279. width: 100%;
  280. font-size: 10pt;
  281. padding: 2mm;
  282. }
  283. #pmonitor {
  284. display: none;
  285. }
  286. #pstatus {
  287. color: white;
  288. font-size: 10pt;
  289. padding: 3px;
  290. border: 1px solid white;
  291. border-radius: 4px;
  292. margin-bottom: 1mm;
  293. }
  294. #ppercenv {
  295. padding: 3px;
  296. border: 1px solid white;
  297. border-radius: 4px;
  298. margin-bottom: 1mm;
  299. }
  300. #pperc {
  301. height: 3mm;
  302. background-color: green;
  303. width: 0;
  304. border-radius: 2px;
  305. }
  306. #plog {
  307. font-size: 10pt;
  308. border-radius: 4px;
  309. border: 1px solid white;
  310. color: white;
  311. height: 120px;
  312. padding: 3px;
  313. overflow-y: scroll;
  314. }
  315. #footer, #almfooter {
  316. width: 100%;
  317. text-align: center;
  318. font-size: 9pt;
  319. margin: 3mm 0 0 0;
  320. }
  321. #almfooter {
  322. font-size: 10.5pt;
  323. }
  324. @media only screen and (max-width:10cm) {
  325. body, .input, .inputx, .textarea, .button, .postbutton, .halfbutton, .copybutton, .output, .outputnobb, .outputli, .posthead, .lastborder, fieldset {
  326. font-size: 11pt;
  327. }
  328. #pstatus, #plog, .debug {
  329. font-size: 9pt;
  330. }
  331. #footer {
  332. font-size: 8.5pt;
  333. }
  334. #almfooter {
  335. font-size: 9.5pt;
  336. }
  337. }