30 lines
617 B
CSS
30 lines
617 B
CSS
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('./styles/fonts/Inter-SemiBold.ttf') format('truetype');
|
|
font-weight: 600;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('./styles/fonts/Inter-ExtraBold.ttf') format('truetype');
|
|
font-weight: 800;
|
|
}
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('./styles/fonts/Inter-Bold.ttf') format('truetype');
|
|
font-weight: 700;
|
|
}
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('./styles/fonts/Inter-Regular.ttf') format('truetype');
|
|
font-weight: 400;
|
|
}
|
|
|
|
:root {
|
|
line-height: 1.2;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
box-sizing: border-box;
|
|
font-family: 'Inter';
|
|
}
|