32 lines
677 B
SCSS
32 lines
677 B
SCSS
@font-face {
|
|
font-family: "Tanker-Regular";
|
|
src: url("/fonts/Tanker-Regular.ttf") format("truetype");
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Satoshi-Regular";
|
|
src: url("/fonts/Satoshi-Regular.ttf") format("truetype");
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Satoshi-Bold";
|
|
src: url("/fonts/Satoshi-Bold.ttf") format("truetype");
|
|
font-weight: 700;
|
|
font-display: swap;
|
|
font-style: normal;
|
|
}
|
|
|
|
$primary: #1C1B20;
|
|
$secondary: #5f5d630f;
|
|
$highlight: #332f3c;
|
|
$accent: #7eca9c;
|
|
$link: #ccffbd;
|
|
|
|
$responsive-width: 1226px;
|
|
$responsive-width-secondary: 750px; |