base.css 645 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. user-select: none;
  8. }
  9. .viewer-title {
  10. display: none !important;
  11. }
  12. .viewer-prev {
  13. display: none !important;
  14. }
  15. .viewer-next {
  16. display: none !important;
  17. }
  18. .viewer-navbar {
  19. display: none !important;
  20. }
  21. .viewer-close {
  22. display: none !important;
  23. }
  24. .viewer-canvas {
  25. & > img {
  26. pointer-events: none;
  27. }
  28. }
  29. @media screen and (max-width: 800px) {
  30. .viewer-footer {
  31. bottom: auto;
  32. top: 10px;
  33. }
  34. }
  35. @font-face {
  36. font-family: 'fzFont';
  37. /* 自定义字体名称 */
  38. src: url('./font/fzFont.TTF') format('truetype');
  39. }