-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.css
99 lines (90 loc) · 1.83 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
footer p {
margin: 3px 0;
}
footer
{
width: 430px;
height: max-content;
background-color: black;
color: white;
font-family: "Poppins", sans-serif;
font-weight: 200;
font-size: 12px;
font-style: normal;
max-width: 100%;
direction: rtl;
}
footer .footer-container
{
display: flex;
padding-inline: 30px;
padding-top: 20px;
justify-content: space-between;
}
footer .footer-container .social-links
{
margin-top: 18px;
display: flex;
justify-content: space-between
}
footer .footer-container .social-links a:nth-child(1)::before,
footer .footer-container .social-links a:nth-child(2)::before,
footer .footer-container .social-links a:nth-child(3)::before
{
position: relative;
}
footer .footer-container .social-links a:nth-child(1)::before
{
content: url('./images/uil_facebook.svg');
}
footer .footer-container .social-links a:nth-child(2)::before
{
content: url('./images/uil_instagram.svg');
}
footer .footer-container .social-links a:nth-child(3)::before
{
content: url('./images/ic_baseline-tiktok.svg');
}
footer .footer-container .contact-details
{
display: block;
text-align: left;
}
footer .footer-container #address {
margin-block: 10px;
}
footer .quick-links a {
display: block;
margin-block: 6px;
text-decoration: none;
color: white;
}
footer .quick-links {
width: 100px;
text-align: left;
}
hr {
width: 400px;
}
footer .copy_rights
{
font-size: 10px;
font-weight: 300;
box-sizing: border-box;
padding: 0 25px;
display: flex;
justify-content: space-between;
}
footer .developed_by
{
position: relative;
padding-block: 10px;
}
.developed_by p
{
text-align: right;
position: absolute;
margin: 0;
right: 40px;
}