-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
117 lines (97 loc) · 2.01 KB
/
footer.css
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
:root {
--color-neutral-0: #0e0c0c;
--color-neutral-10: #171717;
--color-neutral-30: #a8a29e;
--color-neutral-40: #f5f5f5;
}
* {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
letter-spacing: 1px;
}
h1{
color: var(--color-neutral-40);
}
footer {
width: 100%;
color: var(--color-neutral-40);
}
.footer_content {
background-color: var(--color-neutral-10);
display: grid;
grid-template-columns: repeat(2, 1fr);
padding: 3rem 3.5rem;
}
.descricoes{
display: flex;
flex-direction: row;
}
.footer-link {
text-decoration: none;
}
.footer_social_media {
display: flex;
gap: 2rem;
margin-top: 1.5rem;
}
.footer_social_media .footer-link {
display: flex;
align-items: center;
justify-content: center;
height: 2.5rem;
width: 2.5rem;
color: var(--color-neutral-40);
border-radius: 50%;
transition: all 0.4s;
}
.footer_social_media .footer-link i {
font-size: 1.25rem;
}
.footer_social_media .footer-link:hover {
opacity: 0.8;
}
#github {
background: #6e5494;
}
#linkedin {
background-color: #0077b5;
}
#email {
background-color: #D50000;
}
.footer-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
list-style: none;
}
.footer-list .footer-link {
color: var(--color-neutral-30);
transition: all 0.4s;
}
.footer-list .footer-link:hover {
color: var(--color-neutral-40);
}
#footer_copyright {
display: flex;
justify-content: center;
background-color: var(--color-neutral-0);
font-size: 0.9rem;
padding: 1.5rem;
font-weight: 100;
}
@media screen and (max-width: 768px) {
.footer_content {
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
}
@media screen and (max-width: 426px) {
.footer_content {
grid-template-columns: repeat(1, 1fr);
padding: 3rem 2rem;
}
}