global.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. @import url('https://fonts.googleapis.com/css2?family=Tauri&display=swap');
  2. * {
  3. font-family: Tauri, Arial, Helvetica, sans-serif;
  4. }
  5. body {
  6. background: rgb(24, 25, 26, 0.8);
  7. }
  8. .noselect {
  9. -webkit-touch-callout: none;
  10. -webkit-user-select: none;
  11. -khtml-user-select: none;
  12. -moz-user-select: none;
  13. -ms-user-select: none;
  14. user-select: none;
  15. }
  16. .logo-container {
  17. width: 95%;
  18. margin: 0px auto;
  19. }
  20. .logo-link {
  21. font-weight: 700;
  22. position: absolute;
  23. top: 150px;
  24. right: 10px;
  25. }
  26. .logo {
  27. cursor: pointer;
  28. }
  29. #response {
  30. height: 100%;
  31. max-height: 100%;
  32. margin-top: 1em;
  33. background: rgb(36, 37, 38, 0.8);
  34. color: #f0f4f5;
  35. border: solid 1px rgba(255, 255, 255, 0.055);
  36. box-shadow: 0 1px 5px 0 rgb(0 0 0 / 20%);
  37. font-family: 'Courier New', Courier, monospace;
  38. font-size: 12px;
  39. word-wrap: break-word;
  40. padding: 0px 15px;
  41. overflow-y: auto;
  42. }
  43. input,
  44. select,
  45. textarea {
  46. background: rgb(53, 53, 53, 0.9);
  47. color: #fff;
  48. font-family: system-ui, sans-serif;
  49. border: none !important;
  50. border-radius: 0.25rem;
  51. font-size: 1rem;
  52. line-height: 1.2;
  53. padding: 0.25rem 0.5rem;
  54. margin: 0.25rem;
  55. transition: 0.2s ease;
  56. }
  57. button:hover,
  58. button:focus {
  59. background: #ffe07a;
  60. }
  61. button:focus {
  62. outline: 1px solid #fff;
  63. outline-offset: -4px;
  64. }
  65. button:active {
  66. transform: scale(0.99);
  67. }
  68. .button {
  69. border: 0;
  70. border-radius: 0.25rem;
  71. background: #67d6ed;
  72. color: rgb(0, 0, 0);
  73. font-family: system-ui, sans-serif;
  74. font-size: 1rem;
  75. line-height: 1.2;
  76. white-space: nowrap;
  77. text-decoration: none;
  78. padding: 0.25rem 0.5rem;
  79. margin: 0.25rem;
  80. cursor: pointer;
  81. transition: 0.2s ease;
  82. }
  83. .dark-link {
  84. color: white;
  85. text-decoration: none !important;
  86. padding: 0.5em;
  87. background: rgb(36, 37, 38);
  88. transition: 0.2s ease;
  89. border: solid 1px rgba(255, 255, 255, 0.055);
  90. box-shadow: 0 1px 5px 0 rgb(0 0 0 / 20%);
  91. }
  92. .dark-link:hover {
  93. background: #3d392a;
  94. }
  95. .nv {
  96. color: #fff;
  97. cursor: pointer;
  98. transition: 0.25s ease;
  99. }
  100. .nv:hover {
  101. color: #ffe07a;
  102. padding-left: 8px;
  103. border-left: solid 5px #ffe07a;
  104. }
  105. .nv_selected {
  106. color: #67d6ed;
  107. padding-left: 8px;
  108. border-left: solid 5px #67d6ed;
  109. }
  110. .content {
  111. background: rgb(36, 37, 38, 0.5);
  112. color: #f0f4f5;
  113. padding: 20px;
  114. width: 100%;
  115. border: solid 1px rgba(255, 255, 255, 0.055);
  116. box-shadow: 0 1px 5px 0 rgb(0 0 0 / 20%);
  117. }
  118. main {
  119. height: 100%;
  120. }
  121. [type='radio']:checked ~ label {
  122. background: rgb(36, 37, 38);
  123. color: #67d6ed;
  124. border-bottom: 1px solid transparent;
  125. z-index: 2;
  126. }
  127. [type='radio']:checked ~ label ~ .content {
  128. z-index: 1;
  129. }
  130. .flex {
  131. display: flex;
  132. }
  133. .row {
  134. flex-direction: row;
  135. }
  136. .col {
  137. flex-direction: column;
  138. }
  139. .just-around {
  140. justify-content: space-between;
  141. }
  142. .hidden {
  143. display: none;
  144. }
  145. .alert {
  146. width: auto;
  147. height: 40px;
  148. display: flex;
  149. justify-content: left;
  150. align-items: center;
  151. border-radius: 5px;
  152. padding-left: 10px;
  153. padding-right: 40px;
  154. font-size: 15px;
  155. color: #000;
  156. margin-bottom: 10px;
  157. margin-top: 10px;
  158. box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 10px;
  159. border-left: 6px solid #ff0000;
  160. background: #f0f4f5;
  161. }