-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer2.css
134 lines (124 loc) · 2.5 KB
/
footer2.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
.footer {
display: flex;
justify-content: space-between;
align-items: flex-start; /* Align content to top */
/* Reduced padding for more space */
height: 380px; /* Remove fixed height for flexibility */
background-size: 100% 100%;
margin: 0;
padding: 22px;
}
.background-overlay {
background-color: rgba(
119,
31,
15,
0.5
); /* Background color with alpha value */
position: relative;
display: flex;
justify-content: space-between;
align-items: flex-start; /* Align content to top */ /* Reduced padding for more space */
height: 380px;
width: 100%; /* Remove fixed height for flexibility */
background-size: 100% 100%;
margin-top: 0%;
}
.footer-logo {
align-items: flex-start;
width: 100px;
height: auto;
margin-top: 1px;
text-align: left;
margin-right: 5px;
}
.footer-content {
color: rgb(255, 255, 255);
text-align: left;
opacity: 1;
font-size: 18px;
font-family: "Times New Roman", Times, serif;
display: flex;
flex-wrap: nowrap;
column-gap: 180px;
margin-left: 60px;
margin-right: 60px;
margin-top: 5px;
margin-bottom: 10px;
line-height: normal; /* Allow columns to wrap to next line */
/* Removed margin between columns */
-ms-flex-align: baseline;
}
.column {
flex: 1;
margin-left: 2px;
margin-top: 24px;
margin-inline-start: 2px;
}
.column p {
margin-top: 1px;
margin-left: 2px;
}
.footer-content a {
text-decoration: none;
color: rgb(255, 255, 255);
margin-right: 20px;
}
.social-icons {
list-style: none;
padding: 0px;
margin: 2px;
font-size: 18px;
opacity: 5;
}
.social-icons li {
display: inline-block;
font-size: 26px;
/* Reduce margin-right */
margin-right: 5px;
opacity: 6.5;
text-align: left;
grid-template-columns: 5px;
}
.contact-column {
text-align: left;
/* Added margin-top for spacing */
margin-top: 50px;
flex-wrap: nowrap;
}
.footer-copyright {
text-align: center;
width: 100%;
line-height: 30px;
position: absolute;
bottom: 0;
color: rgb(255, 255, 255);
opacity: 1;
left: 50%;
transform: translateX(-55%);
font-family: "Times New Roman", Times, serif;
}
.contact-column h3,
.visit-us-column h3 {
text-decoration: none;
font-size: 23.5px;
margin-left: 2px;
opacity: 5;
}
.visit-us-column {
text-align: left;
/* Added margin-top for spacing */
margin-top: 50px;
}
.google-map {
padding-bottom: 50%;
position: relative;
}
.google-map iframe {
height: 144px;
width: 380px;
left: 0;
top: 0;
position: absolute;
border-radius: 5px;
}