mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-22 09:11:11 +00:00
43 lines
1,003 B
SCSS
43 lines
1,003 B
SCSS
// Typography
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
$sans-serif: $helvetica;
|
|
$serif: $georgia;
|
|
|
|
$base-font-family: $sans-serif;
|
|
$header-font-family: $base-font-family;
|
|
|
|
// Sizes
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
$base-font-size: 1em;
|
|
$base-line-height: $base-font-size * 1.5;
|
|
$base-border-radius: em(3);
|
|
|
|
// Colors
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
$blue: #477DCA;
|
|
$dark-gray: #333;
|
|
$medium-gray: #999;
|
|
$light-gray: #DDD;
|
|
$light-red: #FBE3E4;
|
|
$light-yellow: #FFF6BF;
|
|
$light-green: #E6EFC2;
|
|
|
|
// Body Color
|
|
$base-body-color: white;
|
|
|
|
// Font Colors
|
|
$base-font-color: $dark-gray;
|
|
$base-accent-color: $blue;
|
|
|
|
// Text Link Colors
|
|
$base-link-color: $base-accent-color;
|
|
$hover-link-color: darken($base-accent-color, 15);
|
|
|
|
// Border color
|
|
$base-border-color: $light-gray;
|
|
|
|
// Flash Colors
|
|
$error-color: $light-red;
|
|
$notice-color: $light-yellow;
|
|
$success-color: $light-green;
|