_footer.scss 715 Bytes
Newer Older
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
@use "../abstracts/variables" as var;
@use "../abstracts/mixins" as mix;
@use "sass:math";

footer{
    @extend %section;
    text-align: center;
    background-color: var.$background-color-secondary;
    .socials a:not(:last-child){
        margin-right:(math.div(var.$gutter-base,3)) ;
    }
        i{
        color: var.$text-color-primary;
        font-size: var.$gutter-base;
        
    }
    p{
        margin-top:  (math.div(var.$gutter-base,2));
        margin-bottom: 0;

        text-transform: uppercase;
        color: var.$text-color-primary;
        a{
            text-decoration: none;
            font-weight: var.$font-weight-bold;
            color: var.$text-color-primary;

        }
    }
}