mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
31 lines
No EOL
747 B
Text
31 lines
No EOL
747 B
Text
// Typography
|
|
// --------------------------------------------------
|
|
|
|
@base-font: 'source-sans-pro', sans-serif;
|
|
@heading-font: @base-font;
|
|
@caption-font: @base-font;
|
|
@code-font: 'source-code-pro', monospace;
|
|
@alt-font: 'volkorn', serif;
|
|
|
|
@doc-font-size: 16;
|
|
@doc-line-height: 24;
|
|
|
|
|
|
// set-up the body font-size / line-height
|
|
body {
|
|
margin-top: 0px + @doc-line-height;
|
|
font-size: 0px + @doc-font-size;
|
|
}
|
|
|
|
// Colors
|
|
// --------------------------------------------------
|
|
|
|
@body-color : #ebebeb;
|
|
@text-color : #333;
|
|
@base-color : #343434;
|
|
@comp-color : spin(@base-color, 180);
|
|
@border-color : @base-color;
|
|
@white : #fff;
|
|
@black : #000;
|
|
@accent-color : @black;
|
|
@link-color : #343434; |