webseite/assets/sass/libs/_vars.scss

54 lines
1.1 KiB
SCSS
Raw Normal View History

2018-02-25 00:49:23 +01:00
// Misc.
$misc: (
z-index-base: 10000,
max-wrapper-styles: 6
2018-02-25 00:49:23 +01:00
);
// Duration.
$duration: (
menu: 0.35s,
transition: 0.2s
2018-02-25 00:49:23 +01:00
);
// Size.
$size: (
border-radius: 5px,
element-height: 2.75em,
element-margin: 2em,
inner: 55em,
section-spacing: (
large: 3em,
medium: 2em,
small: 1.75em
),
wrapper-edges: (
large: 6.5em,
medium: 4.75em,
small: 2.5em
)
2018-02-25 00:49:23 +01:00
);
// Font.
$font: (
family: ('Source Sans Pro', Helvetica, sans-serif),
family-fixed: ('Courier New', monospace),
family-heading: (Raleway, Helvetica, sans-serif),
weight: 300,
weight-bold: 600,
weight-heading: 200,
weight-heading-bold: 700,
kern-heading: 0.1em
2018-02-25 00:49:23 +01:00
);
// Palette.
$palette: (
bg: #2e3141,
fg: #ffffff,
fg-bold: #ffffff,
fg-light: rgba(255,255,255,0.35),
border: rgba(255,255,255,0.125),
border-bg: rgba(255,255,255,0.025),
border2: rgba(255,255,255,0.25),
border2-bg: rgba(255,255,255,0.075),
accent: #4c5c96
2018-02-25 00:49:23 +01:00
);