oxen-website/assets/style.scss

224 lines
4.6 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 {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-Thin.ttf) format('truetype');
font-weight: 200;
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-ThinItalic.ttf) format('truetype');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-Regular.ttf) format('truetype');
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-MediumItalic.ttf) format('truetype');
font-style: italic;
font-weight: 500;
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-Medium.ttf) format('truetype');
font-weight: 500;
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-LightItalic.ttf) format('truetype');
font-style: italic;
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-Light.ttf) format('truetype');
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-Italic.ttf) format('truetype');
font-style: italic;
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-BoldItalic.ttf) format('truetype');
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-Bold.ttf) format('truetype');
font-weight: 700;
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-BlackItalic.ttf) format('truetype');
font-weight: 900;
font-style: italic;
}
@font-face {
font-family: Roboto;
src: url(/fonts/Roboto/Roboto-Black.ttf) format('truetype');
font-weight: 900;
}
@font-face {
font-family: RobotoSlab;
src: url(/fonts/RobotoSlab/RobotoSlab-ExtraLight.ttf) format('truetype');
font-weight: 100;
}
@font-face {
font-family: RobotoSlab;
src: url(/fonts/RobotoSlab/RobotoSlab-Thin.ttf) format('truetype');
font-weight: 200;
}
@font-face {
font-family: RobotoSlab;
src: url(/fonts/RobotoSlab/RobotoSlab-Light.ttf) format('truetype');
font-weight: 300;
}
@font-face {
font-family: RobotoSlab;
src: url(/fonts/RobotoSlab/RobotoSlab-Regular.ttf) format('truetype');
font-weight: 400;
}
@font-face {
font-family: RobotoSlab;
src: url(/fonts/RobotoSlab/RobotoSlab-SemiBold.ttf) format('truetype');
font-weight: 500;
}
@font-face {
font-family: RobotoSlab;
src: url(/fonts/RobotoSlab/RobotoSlab-Bold.ttf) format('truetype');
font-weight: 600;
}
@font-face {
font-family: RobotoSlab;
src: url(/fonts/RobotoSlab/RobotoSlab-ExtraBold.ttf) format('truetype');
font-weight: 700;
}
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 {
::-webkit-scrollbar {
display: none;
}
}