global.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @import "../node_modules/bulma/css/bulma.css";
  2. html {
  3. font-size: 13px;
  4. }
  5. body {
  6. font-family: 'Inter', sans-serif;
  7. }
  8. @font-face {
  9. font-family: 'Inter';
  10. font-style: normal;
  11. font-weight: 400;
  12. font-display: swap;
  13. src: url("fonts/Inter-Regular.woff2?v=3.9") format("woff2");
  14. }
  15. @font-face {
  16. font-family: 'Inter';
  17. font-style: italic;
  18. font-weight: 400;
  19. font-display: swap;
  20. src: url("fonts/Inter-Italic.woff2?v=3.9") format("woff2");
  21. }
  22. @font-face {
  23. font-family: 'Inter';
  24. font-style: normal;
  25. font-weight: 700;
  26. font-display: swap;
  27. src: url("fonts/Inter-Bold.woff2?v=3.9") format("woff2");
  28. }
  29. @font-face {
  30. font-family: 'Material Icons';
  31. font-style: normal;
  32. font-weight: 400;
  33. src: url("fonts/MaterialIcons-Regular.woff2") format('woff2')
  34. }
  35. /*
  36. https://google.github.io/material-design-icons/
  37. */
  38. .mdi {
  39. font-family: 'Material Icons';
  40. font-weight: normal;
  41. font-style: normal;
  42. font-size: 24px; /* Preferred icon size */
  43. display: inline-block;
  44. line-height: 1;
  45. text-transform: none;
  46. letter-spacing: normal;
  47. word-wrap: normal;
  48. white-space: nowrap;
  49. direction: ltr;
  50. -webkit-font-smoothing: antialiased;
  51. text-rendering: optimizeLegibility;
  52. }