ACC SHELL
/* ==========================================================================
Vars
========================================================================== */
/**
* Webfonty napric projektem
*/
$font-default-sans: Arial, 'Helvetica Neue', Helvetica, sans-serif;
$font-default-serif: Georgia, Times, 'Times New Roman', serif;
$font-exo: 'Exo', sans-serif;
/**
* Paleta zakladnich barev
*/
$color-white: #ffffff;
$color-gray: #8d8d8d;
$color-black: #000000;
$color-school-bus-yellow: #fcd900;
/**
* Paleta barevnych promennych napric projektem
*/
$color-background: $color-black;
$color-text: $color-gray;
$color-primary: $color-school-bus-yellow;
/**
* Definice breakpointu
*/
$breakpoints: (
"small-only" "screen and (max-width: 479px)",
"small-up" "screen and (min-width: 480px)",
"medium-only" "screen and (min-width: 480px) and (max-width: 767px)",
"medium-down" "screen and (max-width: 767px)",
"medium-up" "screen and (min-width: 768px)",
"large-only" "screen and (min-width: 768px) and (max-width: 1139px)",
"large-down" "screen and (max-width: 999px)",
"large-up" "screen and (min-width: 1000px)"
);
/**
* Zakladni promenne
*/
$base-font-size: 16px;
$base-font-family: $font-exo;
$base-line-height: 1.5 * $base-font-size;
$base-unit: $base-line-height;
$base-grid-unit: 20px;
ACC SHELL 2018