123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* assets/fonts.css */
- @font-face {
- font-family: 'MiSans';
- src: url('../assets/fonts/MiSans-Normal.woff2') format('woff2');
- // font-weight: 400;
- font-style: normal;
- font-display: swap;
- }
- @font-face {
- font-family: 'MiSans-Medium';
- src: url('../assets/fonts/MiSans-Medium.woff2') format('woff2');
- // font-weight: 500;
- font-style: normal;
- font-display: swap;
- }
- @font-face {
- font-family: 'MiSans-Demibold';
- src: url('../assets/fonts/MiSans-Demibold.woff2') format('woff2');
- // font-weight: 600;
- font-style: normal;
- font-display: swap;
- }
- @font-face {
- font-family: 'MiSans-Semibold';
- src: url('../assets/fonts/MiSans-Semibold.woff2') format('woff2');
- // font-weight: 700;
- font-style: normal;
- font-display: swap;
- }
- @font-face {
- font-family: 'MiSans-Bold';
- src: url('../assets/fonts/MiSans-Bold.woff2') format('woff2');
- // font-weight: 800;
- font-style: normal;
- font-display: swap;
- }
- body {
- font-family: 'MiSans', sans-serif;
- }
|