mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
54 lines
No EOL
1.2 KiB
SCSS
54 lines
No EOL
1.2 KiB
SCSS
// Misc.
|
|
$misc: (
|
|
z-index-base: 10000
|
|
);
|
|
|
|
// Duration.
|
|
$duration: (
|
|
menu: 0.5s,
|
|
transition: 0.2s
|
|
);
|
|
|
|
// Size.
|
|
$size: (
|
|
element-height: 2.75em,
|
|
element-margin: 2em,
|
|
section-spacing: 3em,
|
|
section-spacing-small: 1.5em,
|
|
menu: 25em
|
|
);
|
|
|
|
// Font.
|
|
$font: (
|
|
family: ('Source Sans Pro', Helvetica, sans-serif),
|
|
family-fixed: ('Courier New', monospace),
|
|
family-heading: ('Raleway', Helvetica, sans-serif),
|
|
weight: 400,
|
|
weight-medium: 600,
|
|
weight-bold: 700,
|
|
weight-heading: 400,
|
|
weight-heading-bold: 800,
|
|
weight-heading-extrabold: 900,
|
|
kerning-heading: 0.25em,
|
|
no-kerning: 0em
|
|
);
|
|
|
|
// Palette.
|
|
$palette: (
|
|
bg: #ffffff,
|
|
bg-alt: #f4f4f4,
|
|
bg-dropdown: rgb(230, 230, 230),
|
|
fg: #2e2e2e,
|
|
fg-bold: #3c3b3b,
|
|
fg-light: #838383,
|
|
border: rgba(160,160,160,0.3),
|
|
border-bg: rgba(160,160,160,0.075),
|
|
border-alt: rgba(160,160,160,0.65),
|
|
border-dropdown: rgba(0, 0, 0, 0.15),
|
|
accent: #ba2e5d,
|
|
secondary: #6c757d,
|
|
success: #48c774,
|
|
info: #209cee,
|
|
warning: #ffdd57,
|
|
danger: #ff3860
|
|
); |