mirror of
https://github.com/rjNemo/React-SaaS-sample
synced 2026-06-10 14:36:40 +00:00
42 lines
924 B
SCSS
42 lines
924 B
SCSS
@charset "utf-8";
|
|
|
|
// COLORS
|
|
$primary: #00d1b2;
|
|
$info: #209CEE;
|
|
$success: #23D160;
|
|
$warning: #FFDD57;
|
|
$danger: #FF3860;
|
|
$light: #F5F5F5;
|
|
$dark: #363636;
|
|
|
|
// TEXT
|
|
$text: #4A4A4A;
|
|
$link: #3273DC;
|
|
$body-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen",
|
|
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
"Helvetica", "Arial", sans-serif;
|
|
$title-family: false;
|
|
$button-family: false;
|
|
|
|
// BREAKPOINTS
|
|
$gap: 32px;
|
|
$tablet: 769px;
|
|
$desktop: 960px + (2 * $gap);
|
|
$widescreen: 1152px + (2 * $gap);
|
|
$fullhd: 1344px + (2 * $gap);
|
|
$widescreen-enabled: true;
|
|
$fullhd-enabled: false;
|
|
|
|
// LAYOUT
|
|
$section-padding: 3rem 1.5rem;
|
|
$section-padding-medium: 6rem 1.5rem;
|
|
$section-padding-large: 9rem 1.5rem;
|
|
|
|
// SEE DOCS FOR MORE:
|
|
// https://bit.ly/30UvE5O
|
|
|
|
// IMPORT BULMA
|
|
@import "~bulma/bulma.sass";
|
|
|
|
// IMPORT FONT AWESOME
|
|
@import url("https://use.fontawesome.com/releases/v5.10.1/css/all.css");
|