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: c5071c2fa78f0fd8ffda56eb49791488e3413dda (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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;
}