-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_footer.scss
54 lines (49 loc) · 993 Bytes
/
_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
footer {
grid-area: foot;
font-size: var(--font-size-minus-3);
color: var(--color-footer);
font-family: var(--font-footer);
padding-top: 4rem;
padding-bottom: 3rem;
#search {
margin: 4rem auto;
width: 100%;
form {
display: grid;
grid-gap: 1rem;
grid-template-columns: 3fr 1fr;
padding-bottom: 2rem;
@media screen and (max-width: $break-mobile) {
grid-template-columns: 1fr;
}
}
}
ul {
padding: 0;
margin: 0;
list-style: none;
display: flex;
justify-content: center;
@media screen and (max-width: 700px) {
display: block;
text-align: center;
li {
padding: .5rem 0 0;
}
}
}
li:not(:first-child):before {
content: "⋅";
opacity: .35;
margin: 0 .5rem;
@media screen and (max-width: 700px) {
margin: 0;
content: "";
}
}
a[href] {
text-transform: uppercase;
color: inherit;
text-decoration: none;
}
}