31edf9c2872243f64c65e4188a0ef68988319891
[editorial.git] / assets / main / sass / libs / _vars.scss
1 // Misc.
2 $misc: (
3 z-index-base: 10000
4 );
5
6 // Duration.
7 $duration: (
8 nav: 0.5s,
9 transition: 0.2s
10 );
11
12 // Size.
13 $size: (
14 border-radius: 0.375em,
15 element-height: 2.75em,
16 element-margin: 2em,
17 sidebar-width: 26em,
18 sidebar-width-alt: 24em,
19 gutter: 3em
20 );
21
22 // Font.
23 $font: (
24 family: ('Open Sans', sans-serif),
25 family-heading: ('Roboto Slab', serif),
26 family-fixed: ('Courier New', monospace),
27 weight: 400,
28 weight-bold: 600,
29 weight-heading: 700,
30 weight-heading-alt: 400,
31 kerning-heading: 0.075em
32 );
33
34 // Palette.
35 $palette: (
36 bg: #ffffff,
37 bg-alt: #f5f6f7,
38 fg: #7f888f,
39 fg-bold: #3d4449,
40 fg-light: #9fa3a6,
41 border: rgba(210,215,217,0.75),
42 border-bg: transparentize(#e6ebed, 0.75),
43 accent: #f56a6a
44 );