_footer.scss
1.6 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
/* Pre-footer */
.page-prefooter {
padding: 30px 0;
clear: both;
h2 {
font-weight: 700;
font-size: 15px;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0 0 12px;
}
.subscribe-form {
padding-top: 5px;
.form-control {
font-size: 12px;
padding: 0 14px;
height: 36px;
}
.btn {
height: 34px;
text-transform: uppercase;
padding: 7px 16px;
}
}
.social-icons {
padding-top: 9px;
li {
@include opacity(0.35);
&:hover {
@include opacity(1);
}
}
}
p,
address {
margin: 0;
}
}
/* Footer */
.page-footer {
font-size: 12px;
font-weight: 300;
padding: 17px 0;
}
@media (max-width: $screen-sm-max) { /* 991px */
.page-prefooter {
padding-bottom: 10px;
.footer-block {
margin-bottom: 20px;
}
@include reset-container();
}
.page-footer {
@include reset-container();
}
}
/* Scroll Top */
.scroll-to-top {
padding:2px;
text-align:center;
position:fixed;
z-index: $zindex-go-to-top;
bottom: 5px;
display:none;
right: 20px;
> i {
display: inline-block;
font-size: 32px;
@include opacity(0.7);
}
&:hover {
cursor: pointer;
> i {
@include opacity(1);
}
}
}
@media (max-width: $screen-sm-max) { /* 991px */
.scroll-to-top {
right: 10px;
> i {
font-size: 28px;
}
}
}