summaryrefslogtreecommitdiffstats
path: root/themes/rusted/static/css/main.scss
blob: 40e1ed3ac39ef8ecb456847d028a19380257e505 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
@charset "utf-8";


// Our variables
$base-font-family: 'Fira Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
$base-font-size:   16px;
$small-font-size:  $base-font-size * 0.875;
$base-line-height: 1.5;

$spacing-unit:     30px;

$text-color:       #444;
$background-color: #fdfdfd;
$brand-color:      #2a7ae2;

$grey-colour:       #828282;
$grey-colour-light: lighten($grey-colour, 40%);
$grey-colour-dark:  darken($grey-colour, 25%);

$on-palm:          600px;
$on-laptop:        800px;



// Using media queries with like this:
// @include media-query($palm) {
//     .wrapper {
//         padding-right: $spacing-unit / 2;
//         padding-left: $spacing-unit / 2;
//     }
// }
@mixin media-query($device) {
    @media screen and (max-width: $device) {
        @content;
    }
}



// Import partials
@import
        "bootstrap-overrides",
        "base",
        "layout",
        "homepage"
;