2015-07-12 15:01:42 -04:00
|
|
|
// Variables
|
|
|
|
///////////////
|
|
|
|
|
|
|
|
// Sizes
|
2015-08-30 12:53:30 -04:00
|
|
|
$max-width: 1400px;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
// Screen breakpoints
|
|
|
|
$xl: 1100px;
|
|
|
|
$ipad-width: 1028px; // Is actually 1024 but we go over to ensure functionality.
|
|
|
|
$l: 1000px;
|
|
|
|
$m: 800px;
|
|
|
|
$s: 600px;
|
|
|
|
$xs: 400px;
|
|
|
|
$xxs: 360px;
|
2015-09-03 11:51:10 -04:00
|
|
|
$screen-lg: 1200px;
|
2015-10-18 12:29:26 -04:00
|
|
|
$screen-md: 992px;
|
2015-09-03 11:51:10 -04:00
|
|
|
$screen-sm: 768px;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
// Spacing (Margins+Padding)
|
|
|
|
$-xxxl: 64px;
|
|
|
|
$-xxl: 48px;
|
|
|
|
$-xl: 32px;
|
|
|
|
$-l: 24px;
|
|
|
|
$-m: 16px;
|
|
|
|
$-s: 12px;
|
|
|
|
$-xs: 6px;
|
|
|
|
$-xxs: 3px;
|
|
|
|
|
|
|
|
// Fonts
|
2017-08-19 09:33:55 -04:00
|
|
|
$text: -apple-system, BlinkMacSystemFont,
|
|
|
|
"Segoe UI", "Oxygen", "Ubuntu", "Roboto", "Cantarell",
|
|
|
|
"Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
|
|
sans-serif;
|
|
|
|
$mono: "Lucida Console", "DejaVu Sans Mono", "Ubunto Mono", Monaco, monospace;
|
|
|
|
$heading: $text;
|
2015-08-30 12:53:30 -04:00
|
|
|
$fs-m: 15px;
|
2015-07-12 15:01:42 -04:00
|
|
|
$fs-s: 14px;
|
|
|
|
|
|
|
|
// Colours
|
2015-08-30 12:53:30 -04:00
|
|
|
$primary: #0288D1;
|
|
|
|
$primary-dark: #0288D1;
|
2015-07-12 15:01:42 -04:00
|
|
|
$secondary: #e27b41;
|
2015-08-30 12:53:30 -04:00
|
|
|
$positive: #52A256;
|
2015-09-04 15:40:36 -04:00
|
|
|
$negative: #E84F4F;
|
2016-06-19 14:02:53 -04:00
|
|
|
$info: $primary;
|
2016-03-12 10:52:19 -05:00
|
|
|
$warning: $secondary;
|
2016-02-11 17:23:19 -05:00
|
|
|
$primary-faded: rgba(21, 101, 192, 0.15);
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2015-08-31 06:43:28 -04:00
|
|
|
// Item Colors
|
|
|
|
$color-book: #009688;
|
2015-09-03 14:05:45 -04:00
|
|
|
$color-chapter: #ef7c3c;
|
2015-08-31 06:43:28 -04:00
|
|
|
$color-page: $primary;
|
2016-03-13 08:04:08 -04:00
|
|
|
$color-page-draft: #9A60DA;
|
2015-08-31 06:43:28 -04:00
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
// Text colours
|
|
|
|
$text-dark: #444;
|
|
|
|
$text-light: #EEE;
|
|
|
|
|
|
|
|
// Shadows
|
|
|
|
$bs-light: 0 0 4px 1px #CCC;
|
|
|
|
$bs-med: 0 1px 3px 1px rgba(76, 76, 76, 0.26);
|
2017-09-03 11:37:51 -04:00
|
|
|
$bs-hover: 0 2px 2px 1px rgba(0,0,0,.13);
|