1
0
Fork 0

Import of the new theme

This commit is contained in:
Luca Beltrame 2015-05-07 07:32:01 +02:00
parent 04104f0bff
commit 0693a85c3f
331 changed files with 21077 additions and 8782 deletions

View file

@ -0,0 +1,59 @@
/* TOC  Typography variables
Modular Scale  http://modularscale.com/scale/?px1=16&px2=36&ra1=1.25&ra2=0
- Fonts
- Font Weight
- Font Size Variables
*/
@import "functions"; // Allows the use of rem-calc() or lower-bound() in your settings
/* Fonts
------------------------------------------------------------------- */
$base-font-size: 16px;
$rem-base: $base-font-size;
// $base-line-height is 24px while $base-font-size is 16px
$base-line-height: 1.5 !default;
$font-family-sans-serif: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-serif: "Volkhov", Georgia, Times, serif;
$font-family-monospace: "Lucida Console", Monaco, monospace;
$body-font-family: $font-family-sans-serif;
$body-font-weight: normal;
$body-font-style: normal;
$header-font-family: $font-family-serif;
/* Font Weight
------------------------------------------------------------------- */
$font-weight-normal: normal;
$font-weight-bold: bold;
/* Font Size Variables
------------------------------------------------------------------- */
$font-size-p: $base-font-size;
$font-size-h1: 2.441em;
$font-size-h2: 1.953em;
$font-size-h3: 1.563em;
$font-size-h4: 1.25em;
$font-size-h5: 1.152em;
$font-size-small: 0.8em;
.font-size-h1 { font-size: $font-size-h1; }
.font-size-h2 { font-size: $font-size-h2; }
.font-size-h3 { font-size: $font-size-h3; }
.font-size-h4 { font-size: $font-size-h4; }
.font-size-h5 { font-size: $font-size-h5; }