-
Notifications
You must be signed in to change notification settings - Fork 1
/
_variables.scss
38 lines (31 loc) · 888 Bytes
/
_variables.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Base Colors
$primary-color: #272727;
$secondary-color: #aaa;
$complimentary-color: #fff;
$body-bg: #fdfdfd;
$body-font-color: #222;
// Links
$link-color: #492caa;
$link-hover-color: #492cff;
$link-visited-color: #ffa500;
// Text
$base-font-family: Helvetica, Arial, sans-serif;
$base-font-size: 1.0em;
$small-font-size: $base-font-size * 0.875;
$base-line-height: 1.5;
// Primary Navbar Settings
$navbar-height: 44px;
$navbar-color: $primary-color;
$navbar-text-color: $secondary-color;
$navbar-hover-color: $complimentary-color;
$navbar-active-color: darken($complimentary-color, 75%);
$navbar-font-size: 13px;
$navbar-font-family: "Open Sans", Helvetica, Arial, sans-serif;
// Socials Navbar Settings
$socials-font-color: $secondary-color;
$socials-font-size: 1.5em;
// Utility
$spacing-unit: 30px;
// Footer
$footer-height: 40px;
$footer-color: lighten($primary-color, 25%);