global.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. * {
  2. font-family: Arial, Helvetica, sans-serif;
  3. }
  4. body {
  5. background: #889;
  6. }
  7. .logo-container {
  8. width: 95%;
  9. margin: 0px auto;
  10. overflow: hidden;
  11. }
  12. .logo-link {
  13. font-weight: 700;
  14. position: absolute;
  15. top: 150px;
  16. right: 10px;
  17. }
  18. .logo {
  19. width: 32px;
  20. height: 32px;
  21. cursor: pointer;
  22. position: fixed;
  23. z-index: 10;
  24. top: 7px;
  25. right: 10px;
  26. }
  27. #response {
  28. position: absolute;
  29. left: 10px;
  30. right: 10px;
  31. top: 440px;
  32. min-height: 110px;
  33. background: #aab;
  34. font-family: "Courier New", Courier, monospace;
  35. font-size: 12px;
  36. word-wrap: break-word;
  37. padding: 5px;
  38. border-radius: 5px;
  39. overflow-y: auto;
  40. }
  41. input,
  42. select {
  43. background: white;
  44. font-family: system-ui, sans-serif;
  45. border: 0;
  46. border-radius: 0.25rem;
  47. font-size: 1rem;
  48. line-height: 1.2;
  49. padding: 0.25rem 0.5rem;
  50. margin: 0.25rem;
  51. }
  52. button:hover,
  53. button:focus {
  54. background: #0053ba;
  55. }
  56. button:focus {
  57. outline: 1px solid #fff;
  58. outline-offset: -4px;
  59. }
  60. button:active {
  61. transform: scale(0.99);
  62. }
  63. .button {
  64. border: 0;
  65. border-radius: 0.25rem;
  66. background: #1e88e5;
  67. color: white;
  68. font-family: system-ui, sans-serif;
  69. font-size: 1rem;
  70. line-height: 1.2;
  71. white-space: nowrap;
  72. text-decoration: none;
  73. padding: 0.25rem 0.5rem;
  74. margin: 0.25rem;
  75. cursor: pointer;
  76. }
  77. .bottom {
  78. position: fixed;
  79. bottom: 0;
  80. left: 0;
  81. text-align: center;
  82. width: 100%;
  83. padding: 5px;
  84. background: #333;
  85. color: #eef;
  86. }
  87. .dark-link {
  88. color: white;
  89. text-decoration: none !important;
  90. }
  91. .tabs-container {
  92. position: fixed;
  93. height: 400px;
  94. top: 20px;
  95. left: 10px;
  96. right: 10px;
  97. z-index: 9;
  98. }
  99. .tabs {
  100. position: relative;
  101. min-height: 400px;
  102. clear: both;
  103. }
  104. .tab {
  105. float: left;
  106. }
  107. .tab > label {
  108. background: #eee;
  109. padding: 10px;
  110. border: 1px solid transparent;
  111. margin-left: -1px;
  112. position: relative;
  113. left: 1px;
  114. }
  115. .tabs > .tabber {
  116. border-top-left-radius: 5px;
  117. }
  118. .tabs > .tabber ~ .tabber {
  119. border-top-left-radius: none;
  120. }
  121. .tab [type="radio"] {
  122. display: none;
  123. }
  124. .content {
  125. position: absolute;
  126. top: 28px;
  127. left: 0;
  128. background: #bbc;
  129. right: 0;
  130. bottom: 0;
  131. padding: 20px;
  132. border: 1px solid transparent;
  133. border-top-right-radius: 5px;
  134. border-bottom-left-radius: 5px;
  135. border-bottom-right-radius: 5px;
  136. }
  137. [type="radio"]:checked ~ label {
  138. background: #bbc;
  139. border-bottom: 1px solid transparent;
  140. z-index: 2;
  141. }
  142. [type="radio"]:checked ~ label ~ .content {
  143. z-index: 1;
  144. }