forked from cobiwave/simplefolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_footer.scss
More file actions
executable file
·71 lines (60 loc) · 1.28 KB
/
_footer.scss
File metadata and controls
executable file
·71 lines (60 loc) · 1.28 KB
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
@use "../abstracts/variables" as *;
@use "../abstracts/mixins" as *;
.footer {
background-color: $dark-grey;
color: $white-color;
padding: 4.8rem 0;
@include respond(phone) {
border: 0px;
}
&__text {
color: darken($white-color, 50%);
font-size: 1.3rem;
a {
color: darken($white-color, 50%);
font-size: 1.3rem;
transition: all 0.4s;
display: inline-block;
background-color: $dark-grey;
&:hover,
&:active {
color: $primary-color;
-webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
}
}
& hr {
margin: 1rem auto;
border: 0;
width: 50%;
border-top: 2px solid grey;
}
}
.social-links {
display: flex;
flex-direction: row;
justify-content: center;
a {
display: flex;
flex-direction: column;
justify-content: center;
color: $white-color;
font-size: 3rem;
width: 5rem;
height: 5rem;
margin: $default-font-size $default-font-size;
transition: all 0.2s ease-in;
&:hover {
transform: translateY(-2px);
}
}
}
.back-to-top i {
color: $white-color;
margin: 1rem 0 $default-font-size;
transition: all 0.2s ease-in;
&:hover {
transform: translateY(-2px);
}
}