wip migration

This commit is contained in:
María
2025-08-14 15:12:29 +02:00
commit 61d96ac328
148 changed files with 31438 additions and 0 deletions

60
assets/scss/main.scss Normal file
View 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);
}