Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

183 rader
2.3 KiB

  1. @import "colors.less";
  2. body {
  3. margin: 0px;
  4. width: 100vw;
  5. height: 100vh;
  6. background-color: @black;
  7. overflow: hidden;
  8. }
  9. .ui-container {
  10. width: 100%;
  11. height: 100%;
  12. position: absolute;
  13. left: 0px;
  14. top: 0px;
  15. z-index: 20;
  16. overflow: hidden;
  17. > .right {
  18. position: absolute;
  19. right: 10px;
  20. top: 100px;
  21. }
  22. }
  23. * {
  24. box-sizing: border-box;
  25. font-family: bitty;
  26. -webkit-touch-callout: none;
  27. -webkit-user-select: none;
  28. -khtml-user-select: none;
  29. -moz-user-select: none;
  30. -ms-user-select: none;
  31. user-select: none;
  32. }
  33. .canvas-container {
  34. position: relative;
  35. float: left;
  36. &.visible {
  37. opacity: 1;
  38. transition: 1s;
  39. }
  40. canvas {
  41. left: 0px;
  42. top: 0px;
  43. }
  44. }
  45. .disabled {
  46. opacity: 0.4 !important;
  47. pointer-events: none !important;
  48. }
  49. [class^="ui"] {
  50. input, textarea {
  51. -webkit-user-select: text;
  52. -khtml-user-select: text;
  53. -moz-user-select: text;
  54. -ms-user-select: text;
  55. user-select: text;
  56. }
  57. .el {
  58. height: 35px;
  59. text-align: center;
  60. padding: 0px 0px 0px 0px;
  61. background-color: transparent;
  62. }
  63. .textbox {
  64. border: none;
  65. outline: none;
  66. font-size: 16px;
  67. }
  68. div.textbox {
  69. padding-top: 6px;
  70. }
  71. .button {
  72. cursor: pointer;
  73. padding-top: 10px;
  74. &:hover {
  75. background-color: lighten(@black, 10%);
  76. }
  77. }
  78. .spacer-h {
  79. width: 100%;
  80. }
  81. }
  82. ::-webkit-scrollbar {
  83. width: 16px;
  84. }
  85. ::-webkit-scrollbar-track {
  86. background-color: @gray;
  87. -webkit-border-radius: 0px;
  88. border-radius: 0px;
  89. }
  90. ::-webkit-scrollbar-thumb {
  91. -webkit-border-radius: 10px;
  92. border-radius: 0px;
  93. background: @lightGray;
  94. }
  95. .q0 {
  96. color: @white;
  97. }
  98. .q1 {
  99. color: @greenB;
  100. }
  101. .q2 {
  102. color: @blueB;
  103. }
  104. .q3 {
  105. color: @purpleA;
  106. }
  107. .q4 {
  108. color: @orange;
  109. }
  110. .color-red {
  111. color: @red !important;
  112. }
  113. .color-redA {
  114. color: @redA !important;
  115. }
  116. .color-blueA {
  117. color: @blueA !important;
  118. }
  119. .color-blueB {
  120. color: @blueB !important;
  121. }
  122. .color-greenB {
  123. color: @greenB !important;
  124. }
  125. .color-yellowB {
  126. color: @yellowB !important;
  127. }
  128. .color-green {
  129. color: @green !important;
  130. }
  131. .color-brownC {
  132. color: @brownC !important;
  133. }
  134. .color-brownD {
  135. color: @brownD !important;
  136. }
  137. .color-grayA {
  138. color: @white !important;
  139. }
  140. .color-grayB {
  141. color: @grayB !important;
  142. }
  143. .color-grayC {
  144. color: @grayC !important;
  145. }
  146. .color-grayD {
  147. color: @grayD !important;
  148. }
  149. .color-pinkB {
  150. color: @pinkB !important;
  151. }