wip migration
This commit is contained in:
60
assets/scss/main.scss
Normal file
60
assets/scss/main.scss
Normal file
@@ -0,0 +1,60 @@
|
||||
//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);
|
||||
}
|
||||
Reference in New Issue
Block a user