Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_variables.scss « hallo « scss « assets - github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7d88c919fb5b042259beb17372a858380c888c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Colours
$background-1: #6fcdbd; // #48e5c2;
$background-2: #81c6ff;
$default-light: #fff;
$default-dark: #333;

// Fonts
$sans-serif: Montserrat, 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;

@mixin transition($args...) {
    -webkit-transition: $args;
       -moz-transition: $args;
            transition: $args;
}