This repository was archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.css
More file actions
81 lines (81 loc) · 1.31 KB
/
footer.css
File metadata and controls
81 lines (81 loc) · 1.31 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
72
73
74
75
76
77
78
79
80
81
.footer {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: #fff;
font-family: "IRANSansWeb";
}
.footer-about-section {
background-color: #26a0c1;
width: 100%;
}
.footer-about {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: #26a0c1;
padding: 3rem 0;
margin-bottom: 25px;
}
.footer-logo-link {
display: inline-block;
}
.footer-logo-image {
width: 128px;
}
.footer-social-links{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
width: 350px;
}
.social-icon {
padding: 1rem 1.5rem
}
.social-icon-image {
width: 32px;
}
.footer-desc {
font-size: 16px;
font-weight: 400;
line-height: 2rem;
text-align: justify;
width: 75%;
}
.footer-menu {
background: #f9f9f9;
width: 100%;
}
.menu-footer {
display: flex;
justify-content: flex-start;
align-items: center;
list-style: none;
margin: 0;
}
.menu-item {
padding: 1rem 1rem;
}
.menu-item:first-child {
padding-right: 0;
}
.menu-item-link {
color: #828282;
font-size: 15px;
font-weight: 500;
transition: all ease-in-out .15s;
}
.menu-item-link:hover {
color: #1f4b90;
}
@media (max-width: 645px) {
.footer-about {
flex-direction: column;
}
.footer-desc {
width: 100%;
}
}