60 lines
1.3 KiB
SCSS
60 lines
1.3 KiB
SCSS
//all other custom scss files or css should be added here
|
|
@use 'core/variables' as *;
|
|
@use 'core/mixins' as *;
|
|
|
|
// Fonts
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
src: url('~/assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-display: swap;
|
|
src: url('~/assets/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
font-display: swap;
|
|
src: url('~/assets/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-display: swap;
|
|
src: url('~/assets/fonts/Poppins/Poppins-Bold.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Noto Sans';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
src: url('~/assets/fonts/Noto_Sans/NotoSans-Regular.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Noto Sans';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-display: swap;
|
|
src: url('~/assets/fonts/Noto_Sans/NotoSans-Bold.ttf') format('truetype');
|
|
}
|
|
|
|
$font-family-sans-serif: 'Poppins';
|
|
$blue: #374493;
|
|
|
|
|
|
html {
|
|
font-size: min(max(1rem, 4vw), 16px);
|
|
} |