_fonts.scss 699 B

123456789101112131415161718192021222324252627282930313233
  1. // _fonts.scss: Fonts
  2. // ==================
  3. @font-face {
  4. font-family: "Noto Serif";
  5. font-weight: 500;
  6. src: local("Noto Serif"),
  7. url("/fonts/NotoSerif/NotoSerif-Regular.ttf");
  8. }
  9. @font-face {
  10. font-family: "Noto Serif";
  11. font-weight: 700;
  12. src: local("Noto Serif Bold"),
  13. url("/fonts/NotoSerif/NotoSerif-Bold.ttf");
  14. }
  15. @font-face {
  16. font-family: "Noto Serif";
  17. font-style: italic;
  18. font-weight: 500;
  19. src: local("Noto Serif Italic"),
  20. url("/fonts/NotoSerif/NotoSerif-Italic.ttf");
  21. }
  22. @font-face {
  23. font-family: "Noto Serif";
  24. font-style: italic;
  25. font-weight: 700;
  26. src: local("Noto Serif Bold Italic"),
  27. url("/fonts/NotoSerif/NotoSerif-BoldItalic.ttf");
  28. }