diff options
author | Sam Potts <me@sampotts.me> | 2016-06-25 22:35:04 +1000 |
---|---|---|
committer | Sam Potts <me@sampotts.me> | 2016-06-25 22:35:04 +1000 |
commit | be19b7271980db0df00fdc840150645c60457459 (patch) | |
tree | d7f1d0a2e2e47df17494d29fc2ed00704b34e72d /demo/src/less/variables.less | |
parent | 2fdcc18356510ab22998052eb9258238cd0de022 (diff) | |
parent | 4c1cdea56e2ed641642f2436673c21debc0022d0 (diff) | |
download | plyr-be19b7271980db0df00fdc840150645c60457459.tar.lz plyr-be19b7271980db0df00fdc840150645c60457459.tar.xz plyr-be19b7271980db0df00fdc840150645c60457459.zip |
Merge branch 'master' of https://github.com/Selz/plyr
# Conflicts:
# dist/plyr.css
# src/less/plyr.less
# src/scss/plyr.scss
Diffstat (limited to 'demo/src/less/variables.less')
-rw-r--r-- | demo/src/less/variables.less | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/demo/src/less/variables.less b/demo/src/less/variables.less new file mode 100644 index 00000000..4768cdd6 --- /dev/null +++ b/demo/src/less/variables.less @@ -0,0 +1,48 @@ +// ========================================================================== +// Variables +// ========================================================================== + +// Colors +@gray-dark: #343f4a; +@gray: #55646b; +@gray-light: #cbd0d3; +@gray-lighter: #dbe3e8; +@off-white: #f2f5f7; + +@brand-primary: #3498db; +@brand-secondary: #02BD9B; + +// Brands +@color-twitter: #4BAAF4; +@color-youtube: #cc181e; +@color-vimeo: #19b7ed; + +// Base +@body-background: @off-white; //linear-gradient(to left top, @brand-secondary, @brand-primary); + +// Type +@font-size-base: 16; +@font-size-small: 14; +@font-size-h1: 64; +@font-weight-base: 500; +@font-weight-bold: 700; + +// Elements +@link-color: @brand-primary; +@padding-base: 20px; +@arrow-size: 8px; + +// Icons +@icon-size: 18px; + +// Breakpoints +@screen-sm: 480px; +@screen-md: 768px; + +// Radii +@border-radius-base: 4px; +@border-radius-large: 6px; + +// Examples +@example-width-audio: 520px; +@example-width-video: 1200px; |