-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfooter.css
More file actions
66 lines (59 loc) · 934 Bytes
/
footer.css
File metadata and controls
66 lines (59 loc) · 934 Bytes
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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Montserrat";
}
:root {
--mycolor: rgb(255,0,140)
}
footer {
width: 100%;
position: fixed;
bottom: 0;
background: rgb(21,22,26);
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
color: #fff;
padding: 20px;
}
.text {
font-size: 28px;
font-weight: bold;
margin: 40px auto;
}
.social-media {
margin: 20px auto;
}
.social-media i {
padding: 20px;
font-size: 25px;
color: #fff;
}
.social-media i:hover{
color: rgb(2,255,171);
}
@media(max-width:810px){
.social-media i {
padding: 10px;
}
}
@media(max-width:610px){
.social-media i {
font-size: 15px;
}
}
@media(max-width:470px){
.text {
font-size: 12px;
}
}
@media(max-width:330px){
.text {
font-size: 10px;
}
}