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: e540bd3598765c051de08d6ac9d835e61a1e9270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Colours
$background-1: #6fcdbd;
$background-2: #81c6ff;
$default-light: #fff;
$default-dark: #333;

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

// Responsive breaks
$break-large: 980px;

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