_footer.scss
1.73 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//Footer
footer {
@extend .row-f;
background: #5A585A;
.footer--wrapper {
margin-left: auto;
margin-right: auto;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
max-width: 1360px;
@include bp-medium {
flex-direction: row;
text-align: left;
justify-content: space-between;
padding-left: 1.38889%;
padding-right: 1.38889%;
}
}
}
.footer--nav{
display: flex;
align-items: center;
flex-direction:column;
margin-left: 1.38889%;
margin-right: 1.38889%;
@include bp-medium {
flex-direction:row;
}
ul{
@include rem('margin', 0, 0, 35, 0);
width: auto;
display: flex;
list-style-type: none;
@include bp-medium {
@include rem('margin', 0, 0, 0, 35);
width: 230px;
}
@include bp-large {
@include rem('margin', 0, 0, 0, 115);
width: 60%
}
li{
width: auto;
margin: 0 16px;
text-align: center;
}
a{
font-size: 14px; //1.4rem;
color: white;
font-family: TheMixBold;
text-decoration: none;
text-align: left;
line-height:1.2;
}
}
}
.footer--logo {
@include rem('margin', 35, 0, 35, 0);
}
.footer--info {
@include rem('margin', 0, 0, 35, 0);
color: white;
@include bp-medium {
margin-top: 3.5rem;
}
p {
font-size: 1.4rem;
line-height: 1.6em;
font-family: TheMixSemiBold;
color: #FFFFFF;
text-align: center;
@include bp-medium{
text-align: right;
}
}
.footer-center{
text-align: center;
@include bp-medium {
text-align: right;
}
}
}