theme.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. * {
  2. box-sizing: border-box;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. html {
  7. scroll-behavior: smooth;
  8. height: 100%
  9. }
  10. body {
  11. background-color: white;
  12. color: black;
  13. font-family: Arial, Helvetica, Sans-Serif, sans;
  14. font-size: 12pt;
  15. margin: 0;
  16. padding: 5px;
  17. height: 100%
  18. }
  19. h1,h2,h3,h4,h5,h6 {
  20. text-align: center;
  21. }
  22. a {
  23. text-decoration: none;
  24. color: blue;
  25. }
  26. a:hover {
  27. text-decoration: underline;
  28. }
  29. ul {
  30. list-style-type: disc;
  31. padding-left: 0;
  32. margin-left: 14pt;
  33. }
  34. p {
  35. margin-bottom: 10px;
  36. }
  37. #bigtab {
  38. background-color: white;
  39. font-size: 10pt;
  40. margin-left: auto;
  41. margin-right: auto;
  42. max-width: 100%;
  43. margin-bottom: 40px;
  44. }
  45. #bigtab thead {
  46. padding: 3px;
  47. /* position: sticky;
  48. top: 40px;*/
  49. color: white;
  50. height: 30px;
  51. }
  52. #bigtab th {
  53. background-color: #916f6f;
  54. border-radius: 5px;
  55. }
  56. #bigtab .insthead {
  57. padding: 3px;
  58. color: white;
  59. height: 30px;
  60. background-color: #916f6f;
  61. border-radius: 5px;
  62. text-align: center;
  63. vertical-align: middle;
  64. color: white;
  65. font-size: 12pt;
  66. font-weight: bold;
  67. }
  68. #bigtab td {
  69. padding: 3px;
  70. text-align: left;
  71. vertical-align: top;
  72. word-break: break-word;
  73. width: 300px;
  74. background-color: lightgrey;
  75. border-radius: 5px;
  76. }
  77. #bigtab td p {
  78. margin-bottom: 3px;
  79. padding-bottom: 3px;
  80. border-bottom: 1px solid grey;
  81. }
  82. #bigtab .tdattr {
  83. width: 110px;
  84. }
  85. .good, .bad, .neut {
  86. padding: 1px;
  87. margin-bottom: 3px;
  88. border-radius: 3px;
  89. }
  90. .good {
  91. background-color: #87DE87;
  92. }
  93. .bad {
  94. background-color: #DE8787;
  95. }
  96. .neut {
  97. background-color: #FFCCAA;
  98. }
  99. .field {
  100. padding: 1px;
  101. border-radius: 3px;
  102. background-color: #FFEEAA;
  103. color: black;
  104. }
  105. .percstatuses, .perclogins, .percregs {
  106. height: 12px;
  107. line-height: 12px;
  108. vertical-align: middle;
  109. font-size: 6pt;
  110. word-break: keep-all;
  111. overflow-x: visible;
  112. }
  113. .percstatuses {
  114. background-color: #FF8080;
  115. }
  116. .perclogins {
  117. background-color: #99FF55;
  118. }
  119. .percregs {
  120. background-color: #80B3FF;
  121. }
  122. .colsectheader, .colsectcont {
  123. width: 100%;
  124. font-size: 6pt;
  125. text-align: center;
  126. }
  127. .colsectheader {
  128. border-top: 1px solid grey;
  129. margin-top: 5px;
  130. padding-top: 3px;
  131. font-weight: bold;
  132. }
  133. .percbg, .percfg {
  134. margin-top: 2px;
  135. width: 100%;
  136. height: 16px;
  137. background-color: #C83737;
  138. }
  139. .percfg {
  140. background-color: #44AA00;
  141. }
  142. #fullscreen, #fullscreenm {
  143. width: 100%;
  144. height: 100%;
  145. display: table;
  146. }
  147. #fullscreenm {
  148. padding-top: 40px;
  149. }
  150. #middlerow {
  151. display: table-cell;
  152. vertical-align: middle;
  153. text-align: center;
  154. }
  155. #centertit, #centerbox {
  156. font-size: 12pt;
  157. margin-right: auto;
  158. margin-left: auto;
  159. width: 320px;
  160. padding: 5px;
  161. }
  162. #centertit {
  163. font-size: 13pt;
  164. padding: 8px;
  165. background-color: #916f6f;
  166. color: white;
  167. text-shadow: 1px 1px 2px black;
  168. font-weight: bold;
  169. text-align: center;
  170. border-radius: 9px 9px 0 0;
  171. }
  172. #centerbox {
  173. background-color: lightgrey;
  174. border-radius: 0 0 9px 9px;
  175. }
  176. #logintable {
  177. width: 100%;
  178. }
  179. #logintable td {
  180. text-align: right;
  181. width: 1%;
  182. }
  183. #logintable .rtd {
  184. text-align: left;
  185. width: 99%;
  186. }
  187. #logintable .tiptd {
  188. font-size: 10pt;
  189. text-align: center;
  190. width: 100%;
  191. padding-top:10px;
  192. padding-bottom: 10px;
  193. }
  194. input {
  195. width: 100%;
  196. font-size: 11pt;
  197. padding-top: 2px;
  198. padding-bottom: 2px;
  199. }
  200. .button {
  201. font-size: 11pt;
  202. height: 40px;
  203. }
  204. #popup {
  205. z-index: 1;
  206. display: none;
  207. top: 0px;
  208. position: fixed;
  209. width: 100%;
  210. height: 100%;
  211. background-color: rgba(0,0,0,0.75);
  212. color: white;
  213. padding: 0;
  214. font-size: 12pt;
  215. }
  216. #inpopup {
  217. display: table-cell;
  218. vertical-align: middle;
  219. }
  220. #popupcont {
  221. position: relative;
  222. margin-left: auto;
  223. margin-right: auto;
  224. border: 1px solid gray;
  225. width: 200px;
  226. background-color: white;
  227. border-radius: 9px;
  228. color: black;
  229. padding: 5px;
  230. text-align: left;
  231. }
  232. #footer {
  233. color: white;
  234. position: fixed;
  235. height: 40px;
  236. width: 100%;
  237. bottom: 0;
  238. left: 0;
  239. background-color: rgba(0,0,0,0.85);
  240. line-height: 40px;
  241. vertical-align: middle;
  242. }
  243. .nully {
  244. font-style: italic;
  245. color: #666666;
  246. }
  247. #hmenu {
  248. font-size: 14pt;
  249. background-color: rgba(0,0,0,0.85);
  250. color: white;
  251. position: fixed;
  252. top: 0;
  253. left: 0;
  254. width: 100%;
  255. height: 40px;
  256. margin: 0;
  257. padding: 0;
  258. /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);*/
  259. /*padding-left: 40px;*/
  260. z-index: 2;
  261. /*display: none;*/
  262. }
  263. #hmenu ul {
  264. list-style-type: none;
  265. margin: 0;
  266. padding: 0;
  267. overflow: visible;
  268. }
  269. #hmenu ul li {
  270. width: 80pt;
  271. height: 40px;
  272. text-align: center;
  273. display: table-cell;
  274. vertical-align: middle;
  275. color: #3088D4;
  276. }
  277. #hmenu ul li:hover {
  278. background-color: rgba(255,255,255,0.10);
  279. cursor: default;
  280. }
  281. #hmenu ul li a {
  282. width: 80pt;
  283. line-height: 40px;
  284. display: block;
  285. color: #3088D4;
  286. }
  287. #hmenu .ula {
  288. position: absolute;
  289. top: 40px;
  290. background-color: rgba(0,0,0,0.85);
  291. display: none;
  292. }
  293. #hmenu .ulb {
  294. background-color: rgba(0,0,0,0.85);
  295. left: 80pt;
  296. position: relative;
  297. top: -40px;
  298. display: none;
  299. }
  300. #hmenu .ula li, .ulb li {
  301. width: 80pt;
  302. height: 40px;
  303. display: block;
  304. float: none;
  305. text-align: center;
  306. line-height: 40px;
  307. vertical-align: middle;
  308. }
  309. #hmenu .ula li:hover, .ulb li:hover {
  310. text-decoration: underline;
  311. }
  312. #hmenu .hil {
  313. background-color: rgba(255,255,255,0.10);
  314. color: #97C3E9;
  315. }
  316. #hmenu .hil:hover {
  317. cursor: default;
  318. text-decoration: none;
  319. }
  320. #hmenu .ula li.hil:hover, .ulb li.hil:hover {
  321. text-decoration: none;
  322. }