Skip to content

Commit

Permalink
Merge pull request #65 from Hidden-Warden/64-bug-font-isnt-working
Browse files Browse the repository at this point in the history
🐛 Correctif sur les fonts
  • Loading branch information
Ahhj93 authored May 30, 2023
2 parents 6d381c2 + 1e4e4b4 commit ef08d2d
Showing 1 changed file with 72 additions and 36 deletions.
108 changes: 72 additions & 36 deletions static/css/fonts.css
Original file line number Diff line number Diff line change
@@ -1,125 +1,161 @@
@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-Thin.ttf);
font-family: 'Poppins';
src:
local('Poppins Thin'),
url('/fonts/Poppins-Thin.ttf');
font-weight: 100;
font-style: normal;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-ThinItalic.ttf);
font-family: 'Poppins';
src:
local('Poppins Thin Italic'),
url('/fonts/Poppins-ThinItalic.ttf');
font-weight: 100;
font-style: italic;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-ExtraLight.ttf);
font-family: 'Poppins';
src:
local('Poppins ExtraLight'),
url('/fonts/Poppins-ExtraLight.ttf');
font-weight: 200;
font-style: normal;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-ExtraLightItalic.ttf);
font-family: 'Poppins';
src:
local('Poppins ExtraLight Italic'),
url('/fonts/Poppins-ExtraLightItalic.ttf');
font-weight: 200;
font-style: italic;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-Light.ttf);
font-family: 'Poppins';
src:
local('Poppins Light'),
url('/fonts/Poppins-Light.ttf');
font-weight: 300;
font-style: normal;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-LightItalic.ttf);
font-family: 'Poppins';
src:
local('Poppins Light Italic'),
url('/fonts/Poppins-LightItalic.ttf');
font-weight: 300;
font-style: italic;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-Regular.ttf);
font-family: 'Poppins';
src:
local('Poppins Regular'),
url('/fonts/Poppins-Regular.ttf');
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-Italic.ttf);
font-family: 'Poppins';
src:
local('Poppins Italic'),
url('/fonts/Poppins-Italic.ttf');
font-weight: 400;
font-style: italic;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-Medium.ttf);
font-family: 'Poppins';
src:
local('Poppins Medium'),
url('/fonts/Poppins-Medium.ttf');
font-weight: 500;
font-style: normal;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-MediumItalic.ttf);
font-family: 'Poppins';
src:
local('Poppins Medium Italic'),
url('/fonts/Poppins-MediumItalic.ttf');
font-weight: 500;
font-style: italic;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-SemiBold.ttf);
font-family: 'Poppins';
src:
local('Poppins SemiBold'),
url('/fonts/Poppins-SemiBold.ttf');
font-weight: 600;
font-style: normal;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-SemiBoldItalic.ttf);
font-family: 'Poppins';
src:
local('Poppins SemiBold Italic'),
url('/fonts/Poppins-SemiBoldItalic.ttf');
font-weight: 600;
font-style: italic;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-Bold.ttf);
font-family: 'Poppins';
src:
local('Poppins Bold'),
url('/fonts/Poppins-Bold.ttf');
font-weight: 700;
font-style: normal;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-BoldItalic.ttf);
font-family: 'Poppins';
src:
local('Poppins Bold Italic'),
url('/fonts/Poppins-BoldItalic.ttf');
font-weight: 700;
font-style: italic;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-ExtraBold.ttf);
font-family: 'Poppins';
src:
local('Poppins ExtraBold'),
url('/fonts/Poppins-ExtraBold.ttf');
font-weight: 800;
font-style: normal;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-ExtraBoldItalic.ttf);
font-family: 'Poppins';
src:
local('Poppins ExtraBold Italic'),
url('/fonts/Poppins-ExtraBoldItalic.ttf');
font-weight: 800;
font-style: italic;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-Black.ttf);
font-family: 'Poppins';
src:
local('Poppins Black'),
url('/fonts/Poppins-Black.ttf');
font-weight: 900;
font-style: normal;
}

@font-face {
font-family: "Poppins";
src: url(fonts/Poppins-BlackItalic.ttf);
font-family: 'Poppins';
src:
local('Poppins Black Italic'),
url('/fonts/Poppins-BlackItalic.ttf');
font-weight: 900;
font-style: italic;
}

0 comments on commit ef08d2d

Please sign in to comment.