/**** font configuration ****/
@font-face {
font-family: 'GillSansLight';
src: font-url('GillSansLight.ttf') format('truetype');
font-weight: normal;
}
$font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
$header-font: "GillSansLight";
$black: #000;
$white: #FFF;
$error-color: #FFF;
$error-background: #827D7E;
$dark-grey: #333;
$medium-grey: #827D7E;
$light-grey: #CCC;
$primary-color: #F17D04;
$primary-admin-color: #F17D04;
$disabled-button-color: #CCC;
$cancel-button-color: #F17D04;
$reverse-text: #FFF;
/* See `.combobox-clear-button` for an example of this mixin in use */
@mixin icon($icon) {
@extend .fa;
@extend .fa-#{$icon}:before;
}
/* HEADER STYLING */
$header-height: 160px;
$header-gradient-light: #F59503;
$header-gradient-dark: #ED6406;
$header-background: linear-gradient($header-gradient-dark, $header-gradient-light);