Skip to content

Commit

Permalink
updating fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
pzaldonis committed Apr 4, 2024
1 parent ee67eb9 commit cc34f20
Show file tree
Hide file tree
Showing 56 changed files with 146 additions and 109 deletions.
162 changes: 146 additions & 16 deletions _sass/custom/custom.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,148 @@
@font-face{
font-family: 'Poppins';
font-weight: 400;
src: url(assets/fonts/poppins-regular-webfont.woff2) format(woff2),
url(assets/fonts/poppins-regular-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 400;
font-style: italic;
src: url(assets/fonts/poppins-italic-webfont.woff2) format(woff2),
url(assets/fonts/poppins-italic-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 100;
src: url(assets/fonts/poppins-thin-webfont.woff2) format(woff2),
url(assets/fonts/poppins-thin-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 100;
font-style: itlaic;
src: url(assets/fonts/poppins-thinitalic-webfont.woff2) format(woff2),
url(assets/fonts/poppins-thinitalic-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 200;
src: url(assets/fonts/poppins-extralight-webfont.woff2) format(woff2),
url(assets/fonts/poppins-extralight-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 200;
font-style: italic;
src: url(assets/fonts/poppins-extralightitalic-webfont.woff2) format(woff2),
url(assets/fonts/poppins-extralightitalic-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 300;
src: url(assets/fonts/poppins-light-webfont.woff2) format(woff2),
url(assets/fonts/poppins-light-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 300;
font-style: italic;
src: url(assets/fonts/poppins-lightitalic-webfont.woff2) format(woff2),
url(assets/fonts/poppins-lightitalic-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 500;
src: url(assets/fonts/poppins-medium-webfont.woff2) format(woff2),
url(assets/fonts/poppins-medium-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 500;
font-style: italic;
src: url(assets/fonts/poppins-mediumitalic-webfont.woff2) format(woff2),
url(assets/fonts/poppins-mediumitalic-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 600;
src: url(assets/fonts/poppins-semibold-webfont.woff2) format(woff2),
url(assets/fonts/poppins-semibold-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 600;
font-style: italic;
src: url(assets/fonts/poppins-semibolditalic-webfont.woff2) format(woff2),
url(assets/fonts/poppins-semibolditalic-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 700;
src: url(assets/fonts/poppins-bold-webfont.woff2) format(woff2),
url(assets/fonts/poppins-bold-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 700;
font-stlye: italic;
src: url(assets/fonts/poppins-bolditalic-webfont.woff2) format(woff2),
url(assets/fonts/poppins-bolditalic-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 800;
src: url(assets/fonts/poppins-extrabold-webfont.woff2) format(woff2),
url(assets/fonts/poppins-extrabold-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 800;
font-style: italic;
src: url(assets/fonts/poppins-extrabolditalic-webfont.woff2) format(woff2),
url(assets/fonts/poppins-extrabolditalic-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 900;
src: url(assets/fonts/poppins-black-webfont.woff2) format(woff2),
url(assets/fonts/poppins-black-webfont.woff) format(woff);
}

@font-face{
font-family: 'Poppins';
font-weight: 900;
font-style: italic;
src: url(assets/fonts/poppins-blackitalic-webfont.woff2) format(woff2),
url(assets/fonts/poppins-blackitalic-webfont.woff) format(woff);
}

body {font-family: 'Poppins', sans-serif}

h1 {font-weight: 500;}

h2{font-weight: 500;}

h3 {font-weight: 500;}

h4{font-weight: 500;}

a {
color: #3371E7;
}
Expand Down Expand Up @@ -55,23 +200,8 @@ a.skip-to-main:active {
min-height: 8rem;
}

@font-face {
font-family: 'Poppins';
src: url("../Poppins.woff2") format('truetype');
}

body {font-family: 'Poppins'}

h1 {font-weight: 500;}

h2{font-weight: 500;}

h3 {font-weight: 500;}

h4{font-weight: 500;}

.site-title {
font-family: 'Poppins';
font-family: 'Poppins', sans-serif;
font-size: 1.75rem !important;
font-weight: 500;
}
Expand Down
93 changes: 0 additions & 93 deletions assets/Poppins/OFL.txt

This file was deleted.

Binary file removed assets/Poppins/Poppins-Black.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-BlackItalic.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-Bold.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-BoldItalic.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-ExtraBold.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-ExtraBoldItalic.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-ExtraLight.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-ExtraLightItalic.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-Italic.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-Light.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-LightItalic.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-Medium.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-MediumItalic.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-Regular.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-SemiBold.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-SemiBoldItalic.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-Thin.ttf
Binary file not shown.
Binary file removed assets/Poppins/Poppins-ThinItalic.ttf
Binary file not shown.
Binary file added assets/fonts/poppins-black-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-black-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-blackitalic-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-blackitalic-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-bold-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-bold-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-bolditalic-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-bolditalic-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-extrabold-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-extrabold-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-extrabolditalic-webfont.woff
Binary file not shown.
Binary file not shown.
Binary file added assets/fonts/poppins-extralight-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-extralight-webfont.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added assets/fonts/poppins-italic-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-italic-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-light-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-light-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-lightitalic-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-lightitalic-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-medium-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-medium-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-mediumitalic-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-mediumitalic-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-regular-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-regular-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-semibold-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-semibold-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-semibolditalic-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-semibolditalic-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-thin-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-thin-webfont.woff2
Binary file not shown.
Binary file added assets/fonts/poppins-thinitalic-webfont.woff
Binary file not shown.
Binary file added assets/fonts/poppins-thinitalic-webfont.woff2
Binary file not shown.

0 comments on commit cc34f20

Please sign in to comment.