2017-03-10 18:39:51 -08:00
|
|
|
|
/// Contains application wide Sass variables
|
|
|
|
|
|
|
|
|
|
|
|
/// Regular font family
|
|
|
|
|
|
/// @type List
|
2018-07-07 18:19:10 -04:00
|
|
|
|
$text-font-stack: (
|
|
|
|
|
|
'Source Sans Pro',
|
|
|
|
|
|
'Helvetica',
|
|
|
|
|
|
'Arial',
|
|
|
|
|
|
sans-serif
|
|
|
|
|
|
) !default;
|
2017-03-24 20:19:44 -07:00
|
|
|
|
|
2017-03-25 22:11:20 -07:00
|
|
|
|
/// font family for font-awesome
|
|
|
|
|
|
///@type list
|
|
|
|
|
|
$font-awesome-stack: (
|
|
|
|
|
|
'FontAwesome',
|
|
|
|
|
|
sans-serif
|
|
|
|
|
|
);
|
|
|
|
|
|
|
2017-03-28 11:34:04 -07:00
|
|
|
|
/// Font family for bootstrap glyphicons
|
|
|
|
|
|
/// @type list
|
|
|
|
|
|
$glyphicons-stack: (
|
|
|
|
|
|
'Glyphicons Halflings',
|
|
|
|
|
|
sans-serif
|
|
|
|
|
|
);
|
|
|
|
|
|
|
2017-03-27 18:26:09 -07:00
|
|
|
|
$font-weights: (
|
2018-07-07 18:19:10 -04:00
|
|
|
|
normal: (2: 200, 3: 300, 4: 400, 6: 600),
|
|
|
|
|
|
italic: (2: 200, 3: 300, 4: 400, 6: 600)
|
2017-03-24 20:19:44 -07:00
|
|
|
|
);
|
2017-03-10 18:39:51 -08:00
|
|
|
|
|
|
|
|
|
|
//===============
|
2017-03-24 20:19:44 -07:00
|
|
|
|
/// Theming Colors
|
2017-03-10 18:39:51 -08:00
|
|
|
|
//===============
|
|
|
|
|
|
|
|
|
|
|
|
/// Main brand color
|
|
|
|
|
|
/// @type Color
|
2017-03-24 20:19:44 -07:00
|
|
|
|
$brand-color: set-color(blue, oxford);
|
|
|
|
|
|
|
|
|
|
|
|
/// Secondary color
|
|
|
|
|
|
/// @type Color
|
|
|
|
|
|
$secondary-color: set-color(white, catskill);
|
2017-03-10 18:39:51 -08:00
|
|
|
|
|
|
|
|
|
|
/// Copy text color
|
|
|
|
|
|
/// @type Color
|
2017-03-24 20:19:44 -07:00
|
|
|
|
$text-color: set-color(black, dune);
|
|
|
|
|
|
|
|
|
|
|
|
/// Copy text color
|
|
|
|
|
|
/// @type Color
|
|
|
|
|
|
$text-invert-color: tint($text-color, 90%);
|
2017-03-10 18:39:51 -08:00
|
|
|
|
|
|
|
|
|
|
/// Copy link color
|
|
|
|
|
|
/// @type Color
|
2018-07-07 18:19:10 -04:00
|
|
|
|
$link-color: get-color(blue7);
|
2017-03-10 18:39:51 -08:00
|
|
|
|
|
|
|
|
|
|
/// Container's maximum width
|
|
|
|
|
|
/// @type Length
|
|
|
|
|
|
$max-width: 1180px !default;
|
|
|
|
|
|
|
2017-03-24 20:19:44 -07:00
|
|
|
|
/// Navigation minimum height
|
|
|
|
|
|
/// @type Length
|
|
|
|
|
|
$nav-min-height: 50px !default;
|
|
|
|
|
|
|
2017-03-10 18:39:51 -08:00
|
|
|
|
/// Breakpoints map
|
|
|
|
|
|
/// @prop {String} keys - Keys are identifiers mapped to a given length
|
|
|
|
|
|
/// @prop {Map} values - Values are actual breakpoints expressed in pixels
|
|
|
|
|
|
$breakpoints: (
|
2018-07-07 18:19:10 -04:00
|
|
|
|
'small': (min-width: 320px),
|
|
|
|
|
|
'medium': (min-width: 768px),
|
|
|
|
|
|
'large': (min-width: 979px),
|
|
|
|
|
|
'huge': (min-width: 1024px)
|
|
|
|
|
|
) !default;
|
2017-03-10 18:39:51 -08:00
|
|
|
|
|
|
|
|
|
|
/// Z-indexes map, gathering all Z layers of the application
|
|
|
|
|
|
/// @type Map
|
|
|
|
|
|
/// @prop {String} key - Layer’s name
|
|
|
|
|
|
/// @prop {Number} value - Z value mapped to the key
|
2018-07-07 18:19:10 -04:00
|
|
|
|
$z-indexes: (
|
|
|
|
|
|
'toast': 6000,
|
|
|
|
|
|
'modal': 5000,
|
|
|
|
|
|
'dropdown': 4000,
|
|
|
|
|
|
'default': 0,
|
|
|
|
|
|
'below': -1
|
|
|
|
|
|
) !default;
|
2017-03-10 18:39:51 -08:00
|
|
|
|
|
|
|
|
|
|
/// Absolute URL where all assets are served from
|
|
|
|
|
|
/// @type String
|
2017-04-05 11:04:56 -07:00
|
|
|
|
$base-url: '/assets/assets/' !default;
|
2018-05-01 22:50:04 -07:00
|
|
|
|
|
|
|
|
|
|
/// For animations related to banner alerts. This corresponds to a constant value in the js files at
|
|
|
|
|
|
/// constants/notifications.js
|
|
|
|
|
|
$banner-animation-speed: 0.6s;
|
|
|
|
|
|
$banner-alerts-height: 52px;
|