This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_footer.scss
92 lines (79 loc) · 1.61 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
.footer {
padding: 3em 0 2em;
&__logo {
img {
width: 380px;
margin: 0 auto;
}
}
&__nav {
text-align: center;
margin-top: 1.5em;
ul {
margin: 0;
padding: 0;
}
li {
display: inline-block;
margin: 0 15px;
margin-bottom: 7px;
&:last-child {
@include mq(desktop-narrow, 'max-width') {
display: block;
margin: 25px auto 0;
}
}
}
a {
color: $text-color-main;
padding-bottom: 3px;
font-size: 0.75rem;
font-family: $quicksand-font;
border-bottom: 2px solid transparent;
letter-spacing: .15rem;
text-transform: uppercase;
font-weight: 700;
&.is-active,
&:hover {
color: $color-primary;
border-bottom: 2px solid $color-primary;
}
&.download-button {
display: inline-block;
text-transform: uppercase;
text-align: center;
border-radius: 25px;
color: white;
font-family: "Quicksand", sans-serif;
cursor: pointer;
padding: 17px 50px;
font-size: .75rem;
border-bottom: none;
}
}
}
&__privacy-block {
margin-top: 3em;
font-size: .7rem;
text-align: center;
ul {
margin: 0;
padding: 0;
}
li {
margin: 0 15px 10px;
display: inline-block;
&:last-child {
@include mq(tablet, 'max-width') {
display: block;
margin-bottom: 0;
}
}
}
a {
font-family: $quicksand-font;
font-size: .7rem;
color: $color-primary;
}
}
}