mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-12 19:51:07 +05:00
* feat(styles): add base styles, font, and favicon * style(favicon): update current favicon
35 lines
911 B
SCSS
35 lines
911 B
SCSS
@font-face {
|
|
font-family: 'Manrope';
|
|
src: url('/fonts/Manrope/Manrope-Regular.woff2') format('woff2'),
|
|
url('/fonts/Manrope/Manrope-Regular.woff') format('woff');
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Manrope';
|
|
src: url('/fonts/Manrope/Manrope-Medium.woff2') format('woff2'),
|
|
url('/fonts/Manrope/Manrope-Medium.woff') format('woff');
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Manrope';
|
|
src: url('/fonts/Manrope/Manrope-SemiBold.woff2') format('woff2'),
|
|
url('/fonts/Manrope/Manrope-SemiBold.woff') format('woff');
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Manrope';
|
|
src: url('/fonts/Manrope/Manrope-Bold.woff2') format('woff2'), url('/fonts/Manrope/Manrope-Bold.woff') format('woff');
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-display: swap;
|
|
}
|