max80.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. @font-face {
  2. font-family: "Prisma";
  3. src: url(Prisma-MAX.woff2);
  4. }
  5. body {
  6. background: #e6c185;
  7. font-family: "arial", "sans-serif";
  8. }
  9. .mono {
  10. font-family: "source code pro", "monospace";
  11. }
  12. div.title {
  13. width: 100%;
  14. white-space: nowrap;
  15. padding: 1em;
  16. overflow: hidden;
  17. }
  18. div.title svg {
  19. display: inline;
  20. vertical-align: middle;
  21. }
  22. div.title .logo2 {
  23. display: inline;
  24. vertical-align: middle;
  25. text-align: center;
  26. margin: 2em;
  27. font-weight: bold;
  28. font-style: italic;
  29. font-size: 25px;
  30. }
  31. nav {
  32. display: flex;
  33. border-style: solid none solid none;
  34. border-width: 5px;
  35. border-color: white;
  36. width: 100%;
  37. white-space: nowrap;
  38. overflow: hidden;
  39. align-items: stretch;
  40. }
  41. nav * {
  42. display: flex;
  43. margin: 0;
  44. }
  45. nav a {
  46. color: black;
  47. font-weight: 600;
  48. text-align: center;
  49. text-decoration: none;
  50. padding-left: 1.5em;
  51. padding-right: 1.5em;
  52. align-items: center;
  53. }
  54. nav a:hover {
  55. background: #af9365;
  56. }
  57. nav .pad {
  58. flex-grow: 1;
  59. }
  60. nav .text {
  61. padding-top: 1em;
  62. padding-bottom: 1em;
  63. }
  64. nav img {
  65. align-items: center;
  66. border: 1px solid black;
  67. object-fit: none;
  68. }
  69. form fieldset {
  70. border: 5px solid white;
  71. border-radius: 1em;
  72. margin: 1em;
  73. padding: 0.5em 1em;
  74. }
  75. form fieldset legend {
  76. font-weight: bold;
  77. padding: 0.25em;
  78. background: #af9365;
  79. }
  80. form div {
  81. margin: 0;
  82. padding: 0.5ch;
  83. display: flex;
  84. }
  85. form label {
  86. width: 30ch;
  87. }
  88. input[type=text], input[type=password] {
  89. flex: 1;
  90. }
  91. input[type=file] {
  92. font-family: "arial", "sans-serif";
  93. font-size: 80%;
  94. }
  95. select#tzname {
  96. margin-right: 1px;
  97. }
  98. button.show, button.hide {
  99. width: 6ch;
  100. padding: 0;
  101. margin: 0 0 0 1px;
  102. font-size: 70%;
  103. }
  104. button.show .hide {
  105. display: none;
  106. }
  107. button.hide .show {
  108. display: none;
  109. }
  110. button {
  111. width: 28ch;
  112. margin: 1em 1ch 1em 1ch;
  113. padding: 0.25em;
  114. vertical-align: center;
  115. font-family: "arial", "sans-serif";
  116. font-size: 100%;
  117. }
  118. progress {
  119. display: inline-block;
  120. width: 100%;
  121. }
  122. .result {
  123. display: block;
  124. border: 2px solid black;
  125. padding: 0.5ch;
  126. border-radius: 5px;
  127. }
  128. .result.hide {
  129. display: none;
  130. }
  131. .result.ok {
  132. background: #e0ffe0;
  133. }
  134. .result.err {
  135. background: #ffe0e0;
  136. }