global.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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: #18191a;
  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. width: 32px;
  28. height: 32px;
  29. cursor: pointer;
  30. position: fixed;
  31. z-index: 10;
  32. top: 7px;
  33. right: 10px;
  34. }
  35. #response {
  36. height:100%;
  37. max-height: 100%;
  38. margin-top: 1em;
  39. background: rgb(36, 37, 38);
  40. color: #f0f4f5;
  41. border: solid 1px rgba(255, 255, 255, 0.055);
  42. box-shadow: 0 1px 5px 0 rgb(0 0 0 / 20%);
  43. font-family: "Courier New", Courier, monospace;
  44. font-size: 12px;
  45. word-wrap: break-word;
  46. padding: 0px 15px;
  47. overflow-y: auto;
  48. }
  49. input,
  50. select, textarea {
  51. background: rgb(53, 53, 53);
  52. color: #fff;
  53. font-family: system-ui, sans-serif;
  54. border: none !important;
  55. border-radius: 0.25rem;
  56. font-size: 1rem;
  57. line-height: 1.2;
  58. padding: 0.25rem 0.5rem;
  59. margin: 0.25rem;
  60. transition: 0.2s ease;
  61. }
  62. button:hover,
  63. button:focus {
  64. background: #ffe07a;
  65. }
  66. button:focus {
  67. outline: 1px solid #fff;
  68. outline-offset: -4px;
  69. }
  70. button:active {
  71. transform: scale(0.99);
  72. }
  73. .button {
  74. border: 0;
  75. border-radius: 0.25rem;
  76. background: #67D6ED;
  77. color: rgb(0, 0, 0);
  78. font-family: system-ui, sans-serif;
  79. font-size: 1rem;
  80. line-height: 1.2;
  81. white-space: nowrap;
  82. text-decoration: none;
  83. padding: 0.25rem 0.5rem;
  84. margin: 0.25rem;
  85. cursor: pointer;
  86. transition: 0.2s ease;
  87. }
  88. .bottom {
  89. position: fixed;
  90. bottom: 0;
  91. left: 0;
  92. text-align: center;
  93. width: 100%;
  94. padding: 5px;
  95. background: #333;
  96. color: #eef;
  97. }
  98. .dark-link {
  99. color: white;
  100. text-decoration: none !important;
  101. padding: 0.5em;
  102. background: rgb(36, 37, 38);
  103. transition: 0.2s ease;
  104. border: solid 1px rgba(255, 255, 255, 0.055);
  105. box-shadow: 0 1px 5px 0 rgb(0 0 0 / 20%);
  106. }
  107. .dark-link:hover{
  108. background: #3d392a;
  109. }
  110. .nv{
  111. color: #fff;
  112. cursor: pointer;
  113. transition: 0.25s ease;
  114. }
  115. .nv:hover{
  116. color: #ffe07a;
  117. padding-left: 8px;
  118. border-left: solid 5px #ffe07a;
  119. }
  120. .nv_selected{
  121. color: #67D6ED;
  122. padding-left: 8px;
  123. border-left: solid 5px #67D6ED;
  124. }
  125. .content {
  126. background: rgb(36, 37, 38);
  127. color: #f0f4f5;
  128. padding: 20px;
  129. width: 100%;
  130. border: solid 1px rgba(255, 255, 255, 0.055);
  131. box-shadow: 0 1px 5px 0 rgb(0 0 0 / 20%);
  132. }
  133. main{
  134. height: 100%;
  135. }
  136. [type="radio"]:checked ~ label {
  137. background: rgb(36, 37, 38);
  138. color: #67D6ED;
  139. border-bottom: 1px solid transparent;
  140. z-index: 2;
  141. }
  142. [type="radio"]:checked ~ label ~ .content {
  143. z-index: 1;
  144. }
  145. .flex {
  146. display: flex;
  147. }
  148. .row {
  149. flex-direction: row;
  150. }
  151. .col {
  152. flex-direction: column;
  153. }
  154. .just-around{
  155. justify-content: space-between;
  156. }
  157. .hidden {
  158. display: none;
  159. }