forked from ankit071105/Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.css
106 lines (101 loc) · 1.76 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
100
101
102
103
104
105
106
/* General Footer Styling */
.footer-container {
background-color: #1f2937;
color: #ffffff;
padding: 40px 0;
font-family: Arial, sans-serif;
}
/* Logo and Tagline */
.footer-logo-section {
text-align: center;
margin-bottom: 30px;
}
.footer-logo {
max-width: 150px;
margin-bottom: 10px;
border-radius: 50px;
}
.footer-logo-section p {
margin: 5px 0;
font-size: 0.95rem;
}
.follow-us {
margin-top: 10px;
font-weight: bold;
}
/* Social Media Icons */
.social-icons a {
display: inline-block;
margin: 0 10px;
color: #12e9cc;
font-size: 1.5rem;
text-decoration: none;
}
.social-icons a:hover {
color: #76b2ab;
}
/* Footer Link Sections */
.footer-links {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin: 20px 100px;
}
.footer-column {
flex-basis: 20%;
margin-bottom: 10px;
}
.footer-column h4 {
font-size: 1rem;
margin-bottom: 10px;
color: #12e9cc;
}
.footer-column ul {
list-style: none;
padding: 0;
}
.footer-column ul li {
margin-bottom: 8px;
}
.footer-column ul li a {
color: #ffffff;
text-decoration: none;
font-size: 0.95rem;
}
.footer-column ul li a:hover {
text-decoration: underline;
}
/* Footer Bottom Links */
.footer-bottom {
text-align: center;
border-top: 1px solid #ddd;
padding-top: 20px;
}
.footer-bottom ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-bottom ul li {
display: inline-block;
margin: 0 15px;
}
.footer-bottom ul li a {
color: #12e9cc;
text-decoration: none;
font-size: 0.95rem;
}
.footer-bottom ul li a:hover {
text-decoration: underline;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.footer-links {
flex-direction: column;
align-items: center;
}
.footer-column {
flex-basis: 100%;
text-align: center;
}
}