mc.css 446 B

1234567891011121314151617181920
  1. @font-face {
  2. font-family: mc-font;
  3. src: url(./texture/mc-font.ttf);
  4. }
  5. body {
  6. padding: 0;
  7. margin: 0;
  8. image-rendering: pixelated;
  9. height: 100vh;
  10. overflow: hidden;
  11. background: #1D1F21;
  12. color: #DDD;
  13. -webkit-touch-callout:none;
  14. -webkit-user-select: none;
  15. -moz-user-select: none;
  16. -ms-user-select: none;
  17. user-select: none;
  18. font-family: mc-font;
  19. -webkit-tap-highlight-color: transparent;
  20. }