-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathfooter.scss
executable file
·103 lines (88 loc) · 2.06 KB
/
footer.scss
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
// FOOTER
//------------------------------------------------
//------------------------------------------------
#site-footer {
padding: $padding-xlarge 0;
background: $gray-darker;
color: rgba(#fff, 0.5);
ul {
@include span-columns(2);
@include bp(large) {
@include span-columns(4);
@include omega(3n);
margin-bottom: 20px;
}
@include bp(small) {
@include span-columns(12);
}
li {
margin-bottom: 3px;
h3 {
color: #fff;
margin-bottom: 10px;
text-transform: uppercase;
font-family: $base-font-family;
font-weight: $font-bold;
font-size: $font-size-large;
}
a {
color: rgba(#fff, 0.5);
font-size: $font-size-medium;
&:active,
&:focus,
&:hover {
color: #fff;
text-decoration: none;
}
}
}
}
.site-footer-top {
@include clearfix;
margin-bottom: 40px;
}
.site-footer-bottom {
@include display(flex);
@include flex-direction(row);
@include align-items(center);
@include justify-content(space-between);
img {
width: 104px;
height: auto;
}
@include bp(small) {
@include justify-content(flex-start);
flex-wrap: wrap;
img {
margin-top: 18px;
}
}
img {
opacity: 0.4;
margin-right: 65px;
}
}
.back-to-top {
position: fixed;
bottom: 10px;
right: 10px;
width: 44px;
height: 44px;
line-height: 44px;
text-align: center;
z-index: 2;
color: #f0f3f3;
background-color: $brand-primary;
border-radius: 50%;
display: none;
&:active,
&:focus,
&:hover {
color:#f0f3f3;
text-decoration: none;
}
i {
font-size: 22px;
}
}
}