oxen-website/assets/style.scss

149 lines
3.0 KiB
SCSS

@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;
}
body {
min-width: 350px;
}
.__next {
overflow-x: hidden;
}