Docs/demo refresh

This commit is contained in:
Sam Potts
2017-10-25 23:59:53 +11:00
parent 57517a9dcc
commit 378aa159b8
39 changed files with 618 additions and 575 deletions

View File

@ -0,0 +1,9 @@
// ==========================================================================
// Breakpoints
// ==========================================================================
@screen-sm: 480px;
@screen-md: 768px;
@mq-sm: ~"only screen and (min-width: @{screen-sm}) ";
@mq-md: ~"only screen and (min-width: @{screen-md}) ";

View File

@ -0,0 +1,27 @@
// ==========================================================================
// Colors
// ==========================================================================
// Greyscale
@gray-dark: #343f4a;
@gray: #55646b;
@gray-light: #cbd0d3;
@gray-lighter: #dbe3e8;
@off-white: #f2f5f7;
// Text
@color-text: #fff;
// Plyr
@color-brand-primary: #1aafff;
// Brands
@color-twitter: #4baaf4;
@color-youtube: #cc181e;
@color-vimeo: #19b7ed;
// Elements
@color-link: #fff;
// Focus
@tab-focus-default-color: #fff;

View File

@ -0,0 +1,12 @@
// ==========================================================================
// Misc cosmetic
// ==========================================================================
// Button count arrow size
@arrow-size: 8px;
// Radii
@border-radius-base: 4px;
// Background
@page-background: linear-gradient(to left top, lighten(@color-brand-primary, 15%), darken(@color-brand-primary, 15%));

View File

@ -0,0 +1,5 @@
// ==========================================================================
// Icons
// ==========================================================================
@icon-size: 18px;

View File

@ -0,0 +1,5 @@
// ==========================================================================
// Layout
// ==========================================================================
@container-max-width: 1280px;

View File

@ -0,0 +1,5 @@
// ==========================================================================
// Colors
// ==========================================================================
@spacing-base: 20px;

View File

@ -0,0 +1,17 @@
// ==========================================================================
// Typography
// ==========================================================================
@font-sans-serif: 'Avenir', 'Helvetica Neue', sans-serif;
@font-size-base: 16;
@font-size-small: 14;
@font-size-h1: 64;
@font-weight-base: 500;
@font-weight-bold: 700;
@font-weight-heavy: 900;
@line-height-base: 1.5;
@letter-spacing-headings: -0.025em;