_footer.scss
2.94 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#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;
}
}
}
}
}
.social-menu {
flex-direction: row;
padding:0;
list-style: none;
display: flex;
margin:0;
margin-top:1.5rem;
@include media-breakpoint-down(sm) {
margin-top:1rem;
margin-bottom:1rem;
}
a {
font-size:0;
}
li {
margin-right:1rem;
}
.facebook {
a {
display: inline-block;
background:url("/wp-content/themes/understrap-child/images/facebook.svg");
background-size: cover;
height:35px;
width:35px;
display: block;
}
}
.instagram {
a {
display: inline-block;
background:url("/wp-content/themes/understrap-child/images/instagram.svg");
background-size: cover;
height:35px;
width:35px;
display: block;
}
}
.linkedin {
a {
display: inline-block;
background:url("/wp-content/themes/understrap-child/images/linkedin.svg");
background-size: cover;
height:35px;
width:35px;
display: block;
}
}
}