max80.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. div.title {
  10. width: 100%;
  11. white-space: nowrap;
  12. padding: 1em;
  13. overflow: hidden;
  14. }
  15. div.title svg {
  16. display: inline;
  17. vertical-align: middle;
  18. }
  19. div.title .logo2 {
  20. display: inline;
  21. vertical-align: middle;
  22. text-align: center;
  23. margin: 2em;
  24. font-weight: bold;
  25. font-style: italic;
  26. font-size: 25px;
  27. }
  28. nav {
  29. display: flex;
  30. border-style: solid none solid none;
  31. border-width: 5px;
  32. border-color: white;
  33. width: 100%;
  34. white-space: nowrap;
  35. overflow: hidden;
  36. align-items: stretch;
  37. }
  38. nav * {
  39. display: flex;
  40. margin: 0;
  41. }
  42. nav a {
  43. color: black;
  44. font-weight: 600;
  45. text-align: center;
  46. text-decoration: none;
  47. padding-left: 1.5em;
  48. padding-right: 1.5em;
  49. align-items: center;
  50. }
  51. nav a:hover {
  52. background: #af9365;
  53. }
  54. nav .pad {
  55. flex-grow: 1;
  56. }
  57. nav .text {
  58. padding-top: 1em;
  59. padding-bottom: 1em;
  60. }
  61. nav img {
  62. align-items: center;
  63. border: 1px solid black;
  64. object-fit: none;
  65. }
  66. form fieldset {
  67. border: 5px solid white;
  68. border-radius: 1em;
  69. margin: 1em;
  70. padding: 0.5em 1em;
  71. }
  72. form fieldset legend {
  73. font-weight: bold;
  74. padding: 0.25em;
  75. background: #af9365;
  76. }
  77. form label {
  78. display: inline-block;
  79. width: 32ch;
  80. margin: 0.5ch;
  81. }
  82. button {
  83. width: 30ch;
  84. margin: 1em;
  85. }
  86. .showpwd {
  87. width: 6ch;
  88. }
  89. progress {
  90. display: inline-block;
  91. width: 100%;
  92. }
  93. .result {
  94. display: block;
  95. font-family: "source code pro", "monospace";
  96. border: 2px solid black;
  97. padding: 0.5ch;
  98. border-radius: 5px;
  99. }
  100. .result.hide {
  101. display: none;
  102. }
  103. .result.ok {
  104. background: #e0ffe0;
  105. }
  106. .result.err {
  107. background: #ffe0e0;
  108. }