_footer.scss
1.81 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
#wrapper-footer {
height:auto;
min-height:180px;
width:100%;
background:#ffffff;
padding:2.5rem 10%;
margin-top:50px;
border-left:1px solid white;
-webkit-box-shadow: inset 0 -3px 19px -7px #fff, 0 -8px 8px -5px rgba(50,50,50,.55);
-moz-box-shadow: inset 0 -3px 19px -7px #fff, 0 -8px 8px -5px rgba(50,50,50,.55);
box-shadow: inset 0 -3px 19px -7px #fff, 0 -8px 8px -5px rgba(50,50,50,.55);
position: relative;
@include media-breakpoint-down(sm) {
padding-bottom:1rem;
}
.site-footer {
font-family: 'TradeGothic';
display: flex;
flex-direction: row;
position: absolute;
bottom:25px;
left:50px;
width:70%;
& > div {
flex:1;
}
.company-name {
font-family: 'TradeGothic';
font-size:14px;
color: #666;
}
.first-address,.second-address {
pre {
font-family: 'TradeGothic';
font-size:14px;
color: #666;
margin:0;
line-height: 1.25;
}
a {
margin-top:0.5rem;
display: inline-block;
font-size:14px;
}
}
.footer-menu {
ul {
list-style: none;
padding:0;
line-height: 1.25;
li a {
text-transform: uppercase;
}
}
}
@include media-breakpoint-down(sm) {
width:100%;
flex-direction: column;
position: static;
.footer-menu {
margin-top:1rem;
ul {
line-height: 1.5;
}
}
}
}
}