Merge pull request 'added inter fonts from design' (#78) from feature/add-fonts into develop

Reviewed-on: http://85.143.176.51:3000/free-land/front-end/pulls/78
This commit is contained in:
Denis Gorbunov 2022-08-16 19:20:08 +00:00
commit a4a554fa69
10 changed files with 74 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -49,9 +49,81 @@
font-display: swap; font-display: swap;
} }
@font-face {
font-family: "Inter";
src: url("assets/fonts/Inter-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Inter";
src: url("assets/fonts/Inter-ExtraBold.ttf") format("truetype");
font-weight: 800;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Inter";
src: url("assets/fonts/Inter-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Inter";
src: url("assets/fonts/Inter-SemiBold.ttf") format("truetype");
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Inter";
src: url("assets/fonts/Inter-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Inter";
src: url("assets/fonts/Inter-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Inter";
src: url("assets/fonts/Inter-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Inter";
src: url("assets/fonts/Inter-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Inter";
src: url("assets/fonts/Inter-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal;
font-display: swap;
}
html { html {
font-family: "Poppins", -apple-system, "Segoe UI", system-ui, "Roboto", font-family: "Inter", "Poppins", -apple-system, "Segoe UI", system-ui,
"Helvetica Neue", "Arial"; "Roboto", "Helvetica Neue", "Arial";
color: var(--color-text); color: var(--color-text);
} }