You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

60 lines
913 B

  1. @import "../../../src/client/css/colors.less";
  2. html, body {
  3. width: 100vw;
  4. height: 100vh;
  5. }
  6. body {
  7. background-color: @black;
  8. padding: 0px;
  9. margin: 0px;
  10. overflow: hidden;
  11. }
  12. .canvas, .ui-container {
  13. position: absolute;
  14. }
  15. .ui-container {
  16. width: 100%;
  17. height: 100%;
  18. pointer-events: none;
  19. > * {
  20. pointer-events: auto;
  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. font-family: "courier";
  33. }
  34. .disabled {
  35. opacity: 0.4 !important;
  36. pointer-events: none !important;
  37. }
  38. ::-webkit-scrollbar {
  39. width: 16px;
  40. }
  41. ::-webkit-scrollbar-track {
  42. background-color: @gray;
  43. -webkit-border-radius: 0px;
  44. border-radius: 0px;
  45. }
  46. ::-webkit-scrollbar-thumb {
  47. -webkit-border-radius: 10px;
  48. border-radius: 0px;
  49. background: @lightGray;
  50. }