-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
81 lines (66 loc) · 1.25 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
/* updated footer from test.css */
/* Footer Container */
.footer-container {
background-color: #e5e7eb; /* Equivalent to bg-gray-200 */
padding: 10px 0;
}
/* Content Wrapper */
.content-container {
max-width: 1024px;
margin: 0 auto;
text-align: center;
padding: 10px 15px;
}
/* Logo Section */
.logo-section {
padding: 20px 0;
}
.logo {
height: 100px;
margin: 0 auto;
}
.institute-name {
font-weight: bold;
font-size: 18px;
color: #333;
}
.contact-info {
font-size: 14px;
margin-top: 10px;
}
.contact-link {
color: #dc2626; /* Equivalent to text-red-500 */
text-decoration: none;
}
.contact-link:hover {
text-decoration: underline;
}
/* Links Section */
.links-section {
font-weight: bold;
text-transform: uppercase;
margin: 20px 0;
}
.link-item {
padding: 0 10px;
border-right: 2px solid #6b7280; /* Equivalent to border-gray-500 */
}
.link-item:last-child {
border-right: none;
}
.link-item a {
color: #333;
text-decoration: none;
transition: color 0.3s ease;
}
.link-item a:hover {
color: #16a34a; /* Equivalent to text-green-500 */
}
/* Footer Bottom Section */
.footer-bottom {
padding: 20px 0;
}
.copyright {
font-size: 12px;
color: #333;
}