oxen-website/assets/style.scss

123 lines
2.5 KiB
SCSS
Raw Normal View History

2021-01-22 03:43:42 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
/* ********************* */
/* ***** CONSTANTS ***** */
/* ********************* */
$theme-primary: #fe4c00;
$theme-primary-2: #eb5929;
$theme-secondary: #ffd618;
$theme-secondary-1: #ffd400;
/* **************************** */
/* ******** RESPONSIVE ******** */
/* **************************** */
$breakpoint-mobile: 500px;
$breakpoint-tablet: 768px;
$breakpoint-desktop: 992px;
$breakpoint-huge: 1280px;
/* ********************* */
/* ******* FONTS ******* */
/* ********************* */
@font-face {
2021-02-08 07:37:50 +01:00
font-family: WorkSans;
src: url(/fonts/WorkSans/WorkSans-VariableFont_wght.ttf) format('truetype');
2021-01-22 03:43:42 +01:00
}
@font-face {
2021-02-08 07:37:50 +01:00
font-family: WorkSans;
2021-01-22 03:43:42 +01:00
font-style: italic;
2021-02-08 07:37:50 +01:00
src: url(/fonts/WorkSans/WorkSans-Italic-VariableFont_wght.ttf)
format('truetype');
2021-01-22 03:43:42 +01:00
}
2021-01-28 07:07:25 +01:00
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-Thin.ttf) format('truetype');
font-weight: 200;
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-ThinItalic.ttf) format('truetype');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-Regular.ttf) format('truetype');
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-MediumItalic.ttf) format('truetype');
font-style: italic;
font-weight: 500;
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-Medium.ttf) format('truetype');
font-weight: 500;
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-LightItalic.ttf) format('truetype');
font-style: italic;
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-Light.ttf) format('truetype');
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-Italic.ttf) format('truetype');
font-style: italic;
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-BoldItalic.ttf) format('truetype');
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-Bold.ttf) format('truetype');
font-weight: 700;
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-BlackItalic.ttf) format('truetype');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: Prompt;
src: url(/fonts/Prompt/Prompt-Black.ttf) format('truetype');
font-weight: 900;
}
2021-01-22 03:43:42 +01:00
body {
min-width: 350px;
}
2021-02-04 01:57:27 +01:00
.hide-scroll {
2021-02-08 07:37:50 +01:00
&::-webkit-scrollbar {
2021-02-04 01:57:27 +01:00
display: none;
}
2021-02-08 07:37:50 +01:00
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
2021-02-04 01:57:27 +01:00
}