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

_variables.scss « stip « scss « assets - github.com/EmielH/stip-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17a39d7a95f6bf81bf152495f3fb0d80a6a82c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Fonts
$sans-serif: 'Roboto', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
$serif: 'Lora', 'Times', 'Times New Roman', serif;

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

// Portrait size
$portrait-size: 300px;
$portrait-border-width: 20px;

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