-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
65 lines (57 loc) · 1.08 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
.footer {
padding: 20px 0;
border-top: 1px solid #F2F2F2;
font-family: 'Khmer OS', sans-serif; /* Assuming Khmer font */
}
.contact-info {
font-size: 1rem;
color: #42506b;
line-height: 1.5;
text-align: center;
}
.footer-line {
border: 0;
border-top: 1px solid #f2f2f2;
border-bottom: 1px solid #218838;
width: 100%;
margin: 20px 0;
}
.social-icon {
font-size: 1.5rem;
color: #218838;
margin: 0 10px;
}
.footer-text-group {
display: flex;
gap: 20px; /* Space between the text items */
}
.footer-text {
color: #218838;
font-size: 1.1rem;
font-weight: bold;
margin: 0;
}
.footer-link {
color: #218838;
font-size: 1.1rem;
text-decoration: none;
}
.footer-link:hover {
text-decoration: underline;
}
/* Responsive adjustments */
@media (max-width: 767.98px) {
.footer {
text-align: center;
}
.social-icon {
margin-top: 10px;
}
.footer-text-group {
justify-content: center;
}
.footer-link {
text-align: center;
margin-top: 10px;
}
}