Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

76 wiersze
1.1 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. @font-face
  24. {
  25. font-family: bitty;
  26. src: url('../fonts/bitty.ttf');
  27. }
  28. * {
  29. box-sizing: border-box;
  30. font-family: bitty;
  31. -webkit-touch-callout: none;
  32. -webkit-user-select: none;
  33. -khtml-user-select: none;
  34. -moz-user-select: none;
  35. -ms-user-select: none;
  36. user-select: none;
  37. }
  38. .canvasContainer {
  39. position: relative;
  40. float: left;
  41. &.visible {
  42. opacity: 1;
  43. transition: 1s;
  44. }
  45. canvas {
  46. left: 0px;
  47. top: 0px;
  48. }
  49. }
  50. .disabled {
  51. opacity: 0.4 !important;
  52. pointer-events: none !important;
  53. }
  54. ::-webkit-scrollbar {
  55. width: 16px;
  56. }
  57. ::-webkit-scrollbar-track {
  58. background-color: @gray;
  59. -webkit-border-radius: 0px;
  60. border-radius: 0px;
  61. }
  62. ::-webkit-scrollbar-thumb {
  63. -webkit-border-radius: 10px;
  64. border-radius: 0px;
  65. background: @lightGray;
  66. }