summaryrefslogtreecommitdiffstats
path: root/scss/style.scss
blob: 5b9b6a99a1529b9e0a25f74c41e3a0764aa539c2 (plain) (blame)
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
47
48
49
// Mixins.

@mixin block-border($width) {
    border: $width solid $fsfi-dbrown;
    padding: 5px 20px 15px 20px;
}

// Home - Banner

@mixin banner-p-margin-top($pixels) {
    p.banner-text {
            margin-top: $pixels;
    }
}

@include mobile {
    img.banner-img {
        display: none;
    }
}

@include tablet-only {
    @include banner-p-margin-top(50px);
}

@include desktop {
    @include banner-p-margin-top(60px);
}


// Home - News, Articles.

.news,
.articles {
    .wrapper { @include block-border(2px); }

    a {
        color: $black;
    }
    a:hover {
        color: $fsfi-dbrown;
    }

    .title span {
        color: $fsfi-dbrown;
        font-size: 1.3rem;
        text-transform: uppercase;
    }
}