theme.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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: 14pt;
  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: red;
  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. #fullscreen, #fullscreenm {
  35. width: 100%;
  36. height: 100%;
  37. display: table;
  38. }
  39. #fullscreenm {
  40. padding-top: 40px;
  41. }
  42. #middlerow {
  43. display: table-cell;
  44. vertical-align: middle;
  45. text-align: center;
  46. }
  47. #centertit, #centerbox {
  48. font-size: 12pt;
  49. margin-right: auto;
  50. margin-left: auto;
  51. width: 320px;
  52. padding: 5px;
  53. }
  54. #centertit {
  55. font-size: 13pt;
  56. padding: 8px;
  57. background-color: #916f6f;
  58. color: white;
  59. text-shadow: 1px 1px 2px black;
  60. font-weight: bold;
  61. text-align: center;
  62. border-radius: 9px 9px 0 0;
  63. }
  64. #centerbox {
  65. background-color: lightgrey;
  66. border-radius: 0 0 9px 9px;
  67. }
  68. #logintable {
  69. width: 100%;
  70. }
  71. #logintable td {
  72. text-align: right;
  73. width: 1%;
  74. }
  75. #logintable .rtd {
  76. text-align: left;
  77. width: 99%;
  78. }
  79. #logintable .tiptd {
  80. font-size: 10pt;
  81. text-align: center;
  82. width: 100%;
  83. padding-top:10px;
  84. padding-bottom: 10px;
  85. }
  86. input {
  87. width: 100%;
  88. font-size: 11pt;
  89. padding-top: 2px;
  90. padding-bottom: 2px;
  91. }
  92. .button {
  93. font-size: 11pt;
  94. height: 40px;
  95. }
  96. #popup {
  97. z-index: 1;
  98. display: none;
  99. top: 0px;
  100. position: fixed;
  101. width: 100%;
  102. height: 100%;
  103. background-color: rgba(0,0,0,0.75);
  104. color: white;
  105. padding: 0;
  106. font-size: 12pt;
  107. }
  108. #inpopup {
  109. display: table-cell;
  110. vertical-align: middle;
  111. }
  112. #popupcont {
  113. position: relative;
  114. margin-left: auto;
  115. margin-right: auto;
  116. border: 1px solid gray;
  117. width: 200px;
  118. background-color: white;
  119. border-radius: 9px;
  120. color: black;
  121. padding: 5px;
  122. text-align: left;
  123. }
  124. #footer {
  125. color: white;
  126. position: fixed;
  127. height: 40px;
  128. width: 100%;
  129. bottom: 0;
  130. left: 0;
  131. background-color: rgba(0,0,0,0.85);
  132. line-height: 40px;
  133. vertical-align: middle;
  134. }
  135. #hmenu {
  136. font-size: 14pt;
  137. background-color: rgba(0,0,0,0.85);
  138. color: white;
  139. position: fixed;
  140. top: 0;
  141. left: 0;
  142. width: 100%;
  143. height: 40px;
  144. margin: 0;
  145. padding: 0;
  146. /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);*/
  147. /*padding-left: 40px;*/
  148. z-index: 2;
  149. /*display: none;*/
  150. }
  151. #hmenu ul {
  152. list-style-type: none;
  153. margin: 0;
  154. padding: 0;
  155. overflow: visible;
  156. }
  157. #hmenu ul li {
  158. width: 80pt;
  159. height: 40px;
  160. text-align: center;
  161. display: table-cell;
  162. vertical-align: middle;
  163. color: #3088D4;
  164. }
  165. #hmenu ul li:hover {
  166. background-color: rgba(255,255,255,0.10);
  167. cursor: default;
  168. }
  169. #hmenu ul li a {
  170. width: 80pt;
  171. line-height: 40px;
  172. display: block;
  173. color: #3088D4;
  174. }
  175. #hmenu .ula {
  176. position: absolute;
  177. top: 40px;
  178. background-color: rgba(0,0,0,0.85);
  179. display: none;
  180. }
  181. #hmenu .ulb {
  182. background-color: rgba(0,0,0,0.85);
  183. left: 80pt;
  184. position: relative;
  185. top: -40px;
  186. display: none;
  187. }
  188. #hmenu .ula li, .ulb li {
  189. width: 80pt;
  190. height: 40px;
  191. display: block;
  192. float: none;
  193. text-align: center;
  194. line-height: 40px;
  195. vertical-align: middle;
  196. }
  197. #hmenu .ula li:hover, .ulb li:hover {
  198. text-decoration: underline;
  199. }
  200. #hmenu .hil {
  201. background-color: rgba(255,255,255,0.10);
  202. color: #97C3E9;
  203. }
  204. #hmenu .hil:hover {
  205. cursor: default;
  206. text-decoration: none;
  207. }
  208. #hmenu .ula li.hil:hover, .ulb li.hil:hover {
  209. text-decoration: none;
  210. }