-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_footer.scss
54 lines (46 loc) · 1015 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 {
display: flex;
flex-direction: column;
gap: 0.5rem;
text-align: center;
padding: 2rem 1rem;
background-color: $secondary;
color: $primary;
font-size: $body + 2px;
margin-top: 2vw;
.title {
text-transform: uppercase;
font-weight: 700;
}
.content {
display: flex;
justify-content: center;
gap: 1.5rem;
a {
color: $primary;
font-size: ($icon / 2) - 2px;
i {
transition: transform 100ms ease-in, color 100ms ease-in;
&:hover {
transform: translateY(-2px) scale(1.15);
color: $decoration;
}
}
}
}
.copywrite {
margin-top: 1rem;
font-size: $body;
.name {
box-shadow: inset 0 -0.125rem 0 $decoration;
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
color: $decoration;
text-decoration: none;
display: inline-block;
&:hover {
background-color: $decoration;
color: $primary;
}
}
}
}