mirror of https://github.com/escalate/hugo-split-theme.git

Felix Boerner
22.58.2025 8326cda09f707f5030c7113c54f8017ee8f20ae5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//-------------------------------------------------------------------------------
// Variables
//-------------------------------------------------------------------------------
 
// Colors
$color-background   : #0B1C2F;
$color-name         : #47BEC7;
$color-tagline      : #DDDDDD;
$color-text         : #848D96;
$color-credit       : #485462;
$color-link         : #848D96;
$color-link-hover   : #CA486d;
 
// Breakpoints
$bp-smallish        : 991px;
$bp-tablet          : 767px;
$bp-mobile          : 479px;
 
// Image
$image-background   : {{ if .Site.Params.visual.image.enable }}url('../{{ .Site.Params.visual.image.file | default "images/background.jpg" }}'){{ else }}none{{ end }};
$image-position     : {{ if .Site.Params.visual.image.enable }}{{ .Site.Params.visual.image.position | default "50% 50%" }}{{ else }}0% 0%{{ end }};
 
// Animation
$animation-name     : fadein;
$animation-duration : 2s;
 
//-------------------------------------------------------------------------------
// Imports
//-------------------------------------------------------------------------------
 
@import "normalize";
@import "webflow";
@import "animation";
@import "fonts";
@import "content";