25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

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