base.css 581 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. @media screen and (max-width: 800px) {
  25. .viewer-footer {
  26. bottom: auto;
  27. top: 10px;
  28. }
  29. }
  30. @font-face {
  31. font-family: 'fzFont';
  32. /* 自定义字体名称 */
  33. src: url('./font/fzFont.TTF') format('truetype');
  34. }