barebones/assets/styles/config/_variables.scss

79 lines
1.2 KiB
SCSS
Raw Normal View History

2014-09-23 12:31:49 +02:00
/**
2023-08-03 13:57:13 +02:00
* Breakpoints
2014-08-08 12:38:12 +02:00
*/
2014-01-30 12:20:51 +01:00
2023-08-03 13:57:13 +02:00
$breakpoint-lg: 1280px;
$breakpoint-md: 1024px;
$breakpoint-sm: 768px;
$breakpoint-xs: 480px;
2015-10-15 18:24:32 +02:00
/**
* Typography
*/
2023-08-03 13:57:13 +02:00
$base-font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
$alt-font-family: 'Georgia', 'Times New Roman', Times, serif;
2015-10-15 18:24:32 +02:00
$base-font-size: 16;
$base-line-height: 1.5;
$base-spacing-unit: ($base-font-size * $base-line-height) * 1px;
2014-01-30 12:20:51 +01:00
2014-09-23 12:31:49 +02:00
/**
2023-08-03 13:57:13 +02:00
* Grid
2014-08-08 12:38:12 +02:00
*/
2023-08-03 13:57:13 +02:00
$grid-max-width: 1200px;
$grid-columns: 12;
$grid-gutter: $base-spacing-unit;
2015-03-06 17:40:55 +01:00
2023-08-03 13:57:13 +02:00
/**
* Colors
*/
2014-01-30 12:20:51 +01:00
2023-08-03 13:57:13 +02:00
$colors: (
'base': #444,
'background': #fff,
'brand': #444,
'success': #5CB85C,
'info': #444,
'warning': #F0AD4E,
'danger': #D9534F
);
2014-06-20 16:59:08 +02:00
2014-09-23 12:31:49 +02:00
/**
2023-08-03 13:57:13 +02:00
* Spacing
2014-08-08 12:38:12 +02:00
*/
2023-08-03 13:57:13 +02:00
$spacings: (
'xl' ($base-spacing-unit * 4),
'lg' ($base-spacing-unit * 3),
'md' ($base-spacing-unit * 2),
'sm' ($base-spacing-unit * 1),
'xs' ($base-spacing-unit * 0.5),
);
2015-10-14 12:25:52 +02:00
2023-08-03 13:57:13 +02:00
/**
* Font Sizes
*/
$font-sizes: (
'2xl' $base-font-size + 16,
'xl' $base-font-size + 8,
'lg' $base-font-size + 6,
'md' $base-font-size + 2,
'sm' $base-font-size,
'xs' $base-font-size - 2,
);
2015-10-14 12:25:52 +02:00
/**
2015-10-15 18:24:32 +02:00
* Components
2015-10-14 12:25:52 +02:00
*/
2016-12-15 13:42:14 +01:00
$border-radius: 3px;
/**
* Animations
*/
2023-08-03 13:57:13 +02:00
$animation-speed: 250ms;
2023-08-03 13:57:13 +02:00
$animation: ease-in-out;