max80.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. @font-face {
  2. font-family: "Prisma";
  3. src: url(Prisma-MAX.woff2);
  4. }
  5. @font-face {
  6. font-family: "Charm";
  7. font-weight: 700;
  8. src: url(Charm-Bold-PoP.woff2);
  9. }
  10. body {
  11. background: #e6c185;
  12. font-family: "arial", "helvetica", "sans-serif";
  13. }
  14. .mono, pre, output, tt, code, samp {
  15. font-family: "source code pro", "monospace";
  16. }
  17. div.title {
  18. display: flex;
  19. width: 100%;
  20. white-space: nowrap;
  21. padding: 1em 0em;
  22. overflow: hidden;
  23. align-items: center;
  24. }
  25. div.title svg {
  26. padding: 0 20px;
  27. }
  28. div.title *, nav * {
  29. display: flex;
  30. margin: 0;
  31. }
  32. div.title .logo2 {
  33. text-align: right;
  34. padding: 0 25px;
  35. font-weight: 700;
  36. font-size: 50px;
  37. font-family: "Charm","Brush Script MT","cursive";
  38. }
  39. nav {
  40. display: flex;
  41. border-style: solid none solid none;
  42. border-width: 5px;
  43. border-color: white;
  44. width: 100%;
  45. white-space: nowrap;
  46. overflow: hidden;
  47. align-items: stretch;
  48. }
  49. a {
  50. color: black;
  51. text-decoration: underline 2px;
  52. }
  53. nav a {
  54. color: black;
  55. font-weight: 600;
  56. text-align: center;
  57. text-decoration: none;
  58. padding-left: 1.5em;
  59. padding-right: 1.5em;
  60. align-items: center;
  61. }
  62. a:hover {
  63. background: #af9365;
  64. }
  65. .pad {
  66. flex-grow: 1;
  67. }
  68. nav .text {
  69. padding-top: 1em;
  70. padding-bottom: 1em;
  71. }
  72. nav img {
  73. align-items: center;
  74. border: 1px solid black;
  75. object-fit: none;
  76. }
  77. form fieldset {
  78. border: 5px solid white;
  79. border-radius: 1em;
  80. margin: 1em;
  81. padding: 0.5em 1em;
  82. }
  83. form fieldset legend {
  84. font-weight: bold;
  85. padding: 0.25em;
  86. background: #af9365;
  87. }
  88. fieldset > div, fieldset > label {
  89. margin: 0;
  90. padding: 0.5ch;
  91. display: flex;
  92. }
  93. fieldset > ul {
  94. margin: 0;
  95. padding: 0.5ch;
  96. display: block;
  97. list-style-position: inside;
  98. }
  99. fieldset > ul li {
  100. padding: 0.25ch 0;
  101. }
  102. fieldset > p {
  103. font-style: italic;
  104. font-size: 90%;
  105. margin: 0 0 0 33ch;
  106. padding: 0.5em 0.5ch;
  107. }
  108. fieldset b {
  109. /* Abusing <b> as a kind of superlabel tag */
  110. width: 30ch;
  111. font-weight: normal;
  112. }
  113. fieldset b::after {
  114. content: ":";
  115. }
  116. fieldset span.sep {
  117. padding: 0 0.5ch;
  118. }
  119. input[type='text'], input[type='password'] {
  120. flex: 1;
  121. }
  122. input.port {
  123. flex: 0.2;
  124. width: 8ch;
  125. }
  126. .tz select {
  127. padding: 0;
  128. margin: 0 0 0 1px;
  129. }
  130. button.show, button.hide {
  131. width: 6ch;
  132. padding: 0;
  133. margin: 0 0 0 1px;
  134. font-size: 70%;
  135. }
  136. button.show .hide {
  137. display: none;
  138. }
  139. button.hide .show {
  140. display: none;
  141. }
  142. button {
  143. width: 28ch;
  144. margin: 1em;
  145. padding: 0.25em;
  146. vertical-align: middle;
  147. font-family: "arial", "sans-serif";
  148. font-size: 100%;
  149. }
  150. progress {
  151. display: block;
  152. width: 100%;
  153. margin: 0.5em 0;
  154. }
  155. output {
  156. display: none;
  157. border: 2px solid black;
  158. margin: 1em;
  159. padding: 0.75em 1.25em;
  160. border-radius: 1em;
  161. white-space: pre-wrap;
  162. }
  163. .ok output {
  164. display: block;
  165. background: #e0ffe0;
  166. }
  167. .err output {
  168. display: block;
  169. background: #ffe0e0;
  170. }
  171. .onerr {
  172. display: none;
  173. }
  174. .err .onerr {
  175. display: block;
  176. }
  177. .onerr h3 {
  178. font-weight: bold;
  179. text-decoration: underline;
  180. }
  181. .ro input:disabled {
  182. font-family: inherit;
  183. font-size: inherit;
  184. background: inherit;
  185. color: inherit;
  186. border: 0;
  187. opacity: 1;
  188. }
  189. .wip {
  190. width: 80%;
  191. margin: 2em auto;
  192. border: 10px solid #e00000;
  193. padding: 10px 50px;
  194. font-weight: 600;
  195. font-style: italic;
  196. text-align: center;
  197. font-size: 110%;
  198. min-height: 80px;
  199. background-color: #f0c000;
  200. background-image: url("wip.png");
  201. background-repeat: no-repeat;
  202. background-position: 20px 50%;
  203. display: flex;
  204. align-items: center;
  205. }
  206. .wip p {
  207. flex: 1;
  208. }
  209. p.norev {
  210. font-weight: 600;
  211. font-size: 100%;
  212. margin: 0 0;
  213. }
  214. .hidden {
  215. display: none;
  216. }