blob: a6373290d58ef35784768f382edec3605b9f4e90 (
plain)
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
|
@use "../abstracts" as *;
footer {
background-color: $bg-text-container;
width: 100vw;
& * {
margin: $margin-main;
// mobile
@include responsive(phone) {
margin: $margin-mobile;
}
}
dl {
display: flex;
justify-content: center;
align-items: center;
height: 2rem;
// mobile
@include responsive(phone) {
flex-direction: column;
height: max-content;
}
& * {
color: inherit;
font-size: $medium-text;
margin: 0.5rem;
transition: transform 0.3s;
// mobile
@include responsive(phone) {
font-size: $medium-text-mobile;
margin: 0.3rem;
}
}
& dd i:hover {
@include main-link-hover;
}
}
p {
text-align: center;
}
.big-icon {
font-size: $big-text;
}
}
|