initial commit
This commit is contained in:
@@ -4,57 +4,69 @@
|
||||
|
||||
// Fonts
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-family: "BarlowSemiCondensed";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url('~/assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
src: local("Barlow SemiCondensed Bold"), local("BarlowBarlowSemiCondensed-Bold"),
|
||||
url(../fonts/BarlowSemiCondensed/BarlowSemiCondensed-Bold.ttf) format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-family: "Barlow";
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-display: swap;
|
||||
src: url('~/assets/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
|
||||
font-weight: 700;
|
||||
src: local("Barlow Bold"), local("Barlow-Bold"),
|
||||
url(../fonts/Barlow/Barlow-Bold.ttf) format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-family: "Barlow";
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-display: swap;
|
||||
src: url('~/assets/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
|
||||
src: local("Barlow Semibold"), local("Barlow-Semibold"),
|
||||
url(../fonts/Barlow/Barlow-Semibold.ttf) format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Poppins';
|
||||
font-family: "Barlow";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url('~/assets/fonts/Poppins/Poppins-Bold.ttf') format('truetype');
|
||||
font-weight: 500;
|
||||
src: local("Barlow Medium"), local("Barlow-Medium"),
|
||||
url(../fonts/Barlow/Barlow-Medium.ttf) format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Noto Sans';
|
||||
font-family: "Barlow";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url('~/assets/fonts/Noto_Sans/NotoSans-Regular.ttf') format('truetype');
|
||||
src: local("Barlow Regular"), local("Barlow-Regular"),
|
||||
url(../fonts/Barlow/Barlow-Regular.ttf) format("opentype");
|
||||
}
|
||||
|
||||
@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';
|
||||
$font-family-sans-serif: 'Barlow';
|
||||
$blue: #374493;
|
||||
|
||||
|
||||
html {
|
||||
font-size: min(max(1rem, 4vw), 16px);
|
||||
}
|
||||
color: $color-primary;
|
||||
}
|
||||
|
||||
body {
|
||||
padding: 0 2rem;
|
||||
|
||||
header,
|
||||
footer {
|
||||
margin-left: -2rem;
|
||||
margin-right: -2rem;
|
||||
|
||||
@include mobile {
|
||||
margin-left: -1rem;
|
||||
margin-right: -1rem;
|
||||
}
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
padding: 0 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user