mirror of
https://github.com/crydotsnake/bludit-aerial.git
synced 2024-11-22 20:21:35 +01:00
37 lines
547 B
SCSS
37 lines
547 B
SCSS
|
// Misc.
|
||
|
$misc: (
|
||
|
bg: #348cb2 url("images/bg.jpg") bottom left,
|
||
|
bg-width: 1500px
|
||
|
);
|
||
|
|
||
|
// Duration.
|
||
|
$duration: (
|
||
|
bg: 60s,
|
||
|
wrapper: 3s,
|
||
|
overlay: 1.5s,
|
||
|
header: 1s,
|
||
|
nav-icons: 0.5s
|
||
|
);
|
||
|
|
||
|
// Size.
|
||
|
$size: (
|
||
|
nav-icon-wrapper: 5.35em,
|
||
|
nav-icon: 1.75em
|
||
|
);
|
||
|
|
||
|
// Font.
|
||
|
$font: (
|
||
|
);
|
||
|
|
||
|
// Palette.
|
||
|
$palette: (
|
||
|
bg: #fff,
|
||
|
fg: #fff,
|
||
|
|
||
|
nav-icon: (
|
||
|
hover-bg: rgba(255,255,255,0.175),
|
||
|
hover-fg: #fff,
|
||
|
active-bg: rgba(255,255,255,0.35),
|
||
|
active-fg: #fff
|
||
|
)
|
||
|
);
|