ensl.org/app/assets/stylesheets/_variables.scss

120 lines
2.2 KiB
SCSS
Raw Normal View History

2014-04-06 14:14:03 +00:00
/*
Neat Overrides
*/
$max-width: em(1200);
2014-04-06 14:14:03 +00:00
/*
Grid Debugging
*/
// $visual-grid: true;
// $visual-grid-index: 10000;
// $visual-grid-opacity: 0.5;
2014-04-06 14:14:03 +00:00
/*
Neat Breakpoints
*/
$medium-screen: em(640);
$large-screen: em(860);
$medium-screen-up: new-breakpoint(min-width $medium-screen 4);
$large-screen-up: new-breakpoint(min-width $large-screen 8);
/*
Typography
*/
$open-sans: 'Open Sans', sans-serif;
$montserrat: 'Montserrat', sans-serif;
$fontawesome: 'FontAwesome';
2014-04-06 14:14:03 +00:00
$sans-serif: $open-sans;
$base-font-family: $sans-serif;
2014-04-13 11:16:51 +00:00
$header-font-family: $montserrat;
2014-04-06 14:14:03 +00:00
/*
Sizes
*/
$base-font-size: 1em;
$base-line-height: $base-font-size * 1.5;
$base-border-radius: em(3);
/*
Colours
*/
$red: #de8650;
2014-04-18 00:07:07 +00:00
$green: #68cc90;
$blue: #0A8FC8;
$purple: #6a5a8c;
$gold: #FFD700;
2014-04-18 00:07:07 +00:00
$dark-blue: #0072A6;
$dark-gray: #21262A;
2014-04-18 00:07:07 +00:00
$medium-gray: #2F383D;
2014-04-18 00:07:07 +00:00
$light-blue: #2FB0E7;
$light-gray: #ECF1F5;
$light-red: #e56c69;
2014-04-06 14:14:03 +00:00
$light-yellow: #FFF6BF;
$light-green: #1f7f5c;
2014-04-06 14:14:03 +00:00
$base-body-color: white;
2014-04-18 00:07:07 +00:00
$base-font-color: $dark-gray;
2014-04-06 14:14:03 +00:00
$base-accent-color: $blue;
$base-link-color: #285258;
2014-04-06 14:14:03 +00:00
$hover-link-color: darken($base-accent-color, 15);
$base-border-color: $light-gray;
$error-color: $light-red;
$notice-color: $light-yellow;
$success-color: $light-green;
2014-04-18 00:07:07 +00:00
$background-primary: $medium-gray;
2014-04-06 14:14:03 +00:00
$background-secondary: #ece9e1;
$background-tertiary: #e2dfd8;
$text-primary: #232323;
$text-secondary: #888888;
$text-tertiary: #666666;
$link-primary: #285258;
2014-04-18 00:07:07 +00:00
$navbar-primary: $blue;
$navbar-secondary: $light-blue;
$navbar-border: lighten($dark-gray, 10);
2014-04-06 14:14:03 +00:00
$navbar-text: white;
$flash-text: white;
2014-04-18 00:07:07 +00:00
$flash-notice: $blue;
$flash-success: $green;
$flash-warning: $red;
2014-04-06 14:14:03 +00:00
$flash-error: #e56c69;
$input-font-size: em(16);
2014-04-06 14:14:03 +00:00
$input-primary: white;
2014-04-18 00:07:07 +00:00
$input-secondary: $blue;
2014-04-06 14:14:03 +00:00
$input-text: #232323;
2014-04-18 00:07:07 +00:00
$input-border-width: em(2);
$input-border-colour: darken($light-gray, 10%);
$input-padding: em(11);
2014-04-18 00:07:07 +00:00
$input-dark-background-colour: $medium-gray;
$input-dark-border-colour: $light-gray;
$input-dark-border-width: em(2);
$input-dark-border-hover-colour: $blue;
$input-dark-border-focus-colour: $green;
2014-04-06 14:14:03 +00:00
2014-04-18 00:07:07 +00:00
$button-primary: $blue;
$button-secondary: $green;
2014-04-06 14:14:03 +00:00
$button-text: white;
2014-04-18 00:07:07 +00:00
/*
Shadows
*/
$content-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);