66 lines
1.7 KiB
SCSS
Executable File
66 lines
1.7 KiB
SCSS
Executable File
// Colors
|
|
$white: #ffffff;
|
|
$black: #000000;
|
|
$gray-darker: #555555;
|
|
$consul-black: #252937;
|
|
|
|
$consul-red: #c62a71;
|
|
$consul-red-dark: #8c1c59;
|
|
$packer-blue: #1daeff;
|
|
$packer-blue-dark: #1d94dd;
|
|
$terraform-purple: #5c4ee5;
|
|
$terraform-purple-dark: #4040b2;
|
|
$vagrant-blue: #1563ff;
|
|
$vagrant-blue-dark: #104eb2;
|
|
$vault-black: #000000;
|
|
$vault-blue: #00abe0;
|
|
$vault-gray: #919fa8;
|
|
|
|
// Typography
|
|
$font-family-klavika: 'klavika-web', Helvetica, sans-serif;
|
|
$font-family-open-sans: 'Open Sans', sans-serif;
|
|
$font-family-monospace: 'Fira Mono', monospace;
|
|
$font-size: 15px;
|
|
$font-weight-reg: 400;
|
|
$font-weight-bold: 600;
|
|
|
|
// Body
|
|
$body-font-color: $gray-darker;
|
|
$body-link-color: $consul-red;
|
|
|
|
// Home
|
|
$home-header-background-color: transparent;
|
|
$home-header-link-color: $gray-darker;
|
|
$home-header-link-color-hover: $black;
|
|
|
|
// Sidebar
|
|
$sidebar-background-color: $white;
|
|
$sidebar-font-size: $font-size - 2;
|
|
$sidebar-link-color: $body-font-color;
|
|
$sidebar-link-color-hover: $black;
|
|
$sidebar-link-color-active: $body-link-color;
|
|
$sidebar-font-family: $font-family-open-sans;
|
|
$sidebar-font-weight: $font-weight-reg;
|
|
|
|
// Header
|
|
$header-background-color: $consul-red;
|
|
$header-font-size: $font-size - 2;
|
|
$header-height: 92px;
|
|
$header-link-color: rgba($black, 0.85);
|
|
$header-link-color-hover: $black;
|
|
$header-font-family: $font-family-klavika;
|
|
|
|
// Footer
|
|
$footer-font-size: $font-size - 2;
|
|
$footer-link-color: $body-font-color;
|
|
$footer-link-color-hover: $black;
|
|
|
|
// Button
|
|
$button-background: $white;
|
|
$button-font-color: #7b8a8e;
|
|
$button-font-family: $font-family-klavika;
|
|
$button-font-size: $font-size;
|
|
$button-font-weight: $font-weight-bold;
|
|
$button-primary-background: $consul-red;
|
|
$button-primary-font-color: $white;
|