1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-29 00:58:00 +02:00
blog/src/styles/_variables.scss

97 lines
2.1 KiB
SCSS
Raw Normal View History

2018-07-18 00:24:11 +02:00
$imageMaxWidth: 940px;
$easing: cubic-bezier(.75, 0, .08, 1);
// Colors
/////////////////////////////////////
$brand-main: #015565;
$brand-main-light: #88bec8;
2018-07-18 02:19:32 +02:00
$brand-cyan: #43a699;
2018-07-18 00:24:11 +02:00
$brand-light: #e7eef4;
$brand-grey: #6b7f88;
$brand-grey-light: lighten($brand-grey, 15%);
2018-07-19 02:22:01 +02:00
$brand-grey-dimmed: lighten($brand-grey, 30%);
2018-07-18 00:24:11 +02:00
// Backgrounds
/////////////////////////////////////
2018-07-18 02:19:32 +02:00
$body-background-color: #dfe8ef;
2018-07-18 00:24:11 +02:00
$body-background-color--dark: darken($brand-grey, 30%);
2018-07-18 02:19:32 +02:00
$page-background-color: $brand-light;
2018-07-18 00:24:11 +02:00
// Text Colors
/////////////////////////////////////
$text-color: $brand-grey;
$text-color-light: $brand-grey-light;
$text-color--dark: $brand-grey-light;
$text-color-light--dark: $brand-grey;
2018-07-19 02:22:01 +02:00
$link-color: $brand-cyan;
2018-07-18 02:19:32 +02:00
// Base Typography
2018-07-18 00:24:11 +02:00
/////////////////////////////////////
$font-size-root: 18px;
$font-size-base: 1rem;
$font-size-large: 1.2rem;
$font-size-small: .8rem;
$font-size-mini: .7rem;
$font-size-h1: 2.5rem;
$font-size-h2: 2rem;
$font-size-h3: 1.75rem;
$font-size-h4: $font-size-large;
$font-size-h5: $font-size-base;
$font-size-h6: $font-size-small;
$line-height: 1.5;
$line-height-small: 1.1428571429;
$font-family-base: 'ff-tisa-sans-web-pro', 'Trebuchet MS', 'Helvetica Neue',
Helvetica, Arial, sans-serif;
$font-weight-base: 400;
$font-color-base: $text-color;
$font-family-monospace: Menlo, Monaco, Consolas, 'Courier New', monospace;
2018-07-18 02:19:32 +02:00
// Headings
/////////////////////////////////////
2018-07-18 00:24:11 +02:00
$font-family-headings: 'brandon-grotesque', 'Avenir Next', 'Helvetica Neue',
Helvetica, Arial, sans-serif;
$font-weight-headings: 500;
$line-height-headings: 1.1;
$color-headings: $brand-main;
$color-headings--dark: $brand-main-light;
2018-07-18 23:04:31 +02:00
// Spacing
/////////////////////////////////////
$spacer: ($font-size-base * $line-height);
2018-07-19 16:49:20 +02:00
$padding-base-vertical: 8px;
$padding-base-horizontal: 12px;
2018-07-18 23:04:31 +02:00
$border-radius: 3px;
2018-07-18 02:19:32 +02:00
// Code
/////////////////////////////////////
$code-bg: #343642;
$code-color: $brand-light;
$kbd-bg: $code-bg;
$kbd-color: $code-color;
// Responsive breakpoints
/////////////////////////////////////
$screen-xs: 30em;
$screen-sm: 40.625em;
$screen-md: 60em;
$screen-lg: 87.5em;