mirror of
https://github.com/GuerillaStudio/now-playing
synced 2024-11-07 12:11:52 +00:00
29 lines
862 B
SCSS
29 lines
862 B
SCSS
// --------------------------------------------------------------
|
|
// == config */
|
|
// --------------------------------------------------------------
|
|
|
|
// base
|
|
// --------------------------------------------------------------
|
|
|
|
$base-font: 16; // px value (without unit), will be converted in em
|
|
$line-height: 1.5;
|
|
$fontstack1: "Source Sans Pro", "Source Sans Pro-fallback", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
$fontstack2: Georgia, Times, "Times New Roman", serif;
|
|
|
|
// responsive
|
|
// --------------------------------------------------------------
|
|
|
|
$xsmall: 480px;
|
|
$small: 840px;
|
|
$medium: 960px;
|
|
$large: 1280px;
|
|
|
|
// default gutter
|
|
// --------------------------------------------------------------
|
|
|
|
$default-gutter: 2rem;
|
|
|
|
// Focus ring
|
|
// --------------------------------------------------------------
|
|
|
|
$focus-ring: 0 0 0 .3rem rgba($color-tertiary, .5);
|