-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathfootercss.css
260 lines (223 loc) · 4.91 KB
/
footercss.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/* ========================
Footer Section
======================== */
.main-footer {
background-color: #f8f8f8;
padding: 4rem 5%;
color: #333;
font-family: 'Arial', sans-serif;
border-top: 3px solid #E5A186;
border-top-left-radius: 50px;
border-top-right-radius: 50px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3 {
font-size: 2rem;
margin-bottom: 1rem;
color: #000;
}
.footer-section h4 {
font-size: 1.2rem;
margin-bottom: 1rem;
color: #000;
}
.footer-section p {
line-height: 1.6;
margin-bottom: 1rem;
letter-spacing: 0.2px;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section ul li {
margin-bottom: 0.8rem;
}
.footer-section ul li a {
color: #333;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-section ul li a:hover {
color: #E5A186;
}
.social-links {
display: flex;
justify-content: flex-start;
align-items: center;
gap: 20px;
margin-top: 1rem;
}
.social-links a {
color: #333;
font-size: 1.5rem;
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.social-links a[aria-label="Facebook"]:hover {
color: #3b5998;
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.social-links a[aria-label="Twitter"]:hover {
color: #1da1f2;
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.social-links a[aria-label="Instagram"]:hover {
color: #e4405f;
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.social-links a[aria-label="YouTube"]:hover {
color: #ff0000;
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.social-links a[aria-label="Linkedin"]:hover {
color: #0077b5;
text-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.contact-info li {
display: flex;
align-items: center;
transition: all 0.3s ease;
gap: 0.6rem;
}
.contact-info li span {
margin-left: 0.3rem;
transition: all 0.3s ease;
}
.contact-info li span:hover {
color: #E5A186;
}
.footer-bottom {
text-align: center;
padding-top: 0.5rem;
border-top: 1px solid #ddd;
font-size: 0.9rem;
}
.heart {
display: inline-block;
animation: beat 1s ease infinite;
}
@keyframes beat {
0%,
50%,
100% {
transform: scale(1);
}
25%,
75% {
transform: scale(1.2);
}
}
form {
padding-bottom: 199px;
display: flex;
align-items: center;
justify-content: space-between;
position: relative; /* Add relative positioning to the form */
margin-bottom: 1px;
}
form::before {
content: "";
position: absolute;
bottom: 0;
left: 0%; /* Adjust this value to control the starting point of the border */
width: 92%; /* Adjust this value to control the length of the border */
border-bottom: 1px solid #333; /* border color */
}
form input{
width:85%;
padding: 5px;
background: transparent;
color: #333;
border: 0;
outline: none;
}
form button{
background: transparent;
border: 0;
outline: none;
cursor: pointer;
}
form button .fas{
font-size: 16px;
padding: 10px 20px;
color: #333;
}
.main-footer .footer-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}
.main-footer .footer-section {
flex: 1 1 18%; /* This ensures each section takes up an equal width, you can adjust percentage as needed */
padding: 10px;
}
.main-footer .footer-section h4 {
margin-bottom: 10px;
}
.main-footer .footer-section ul,
.main-footer .footer-section form {
margin: 0;
padding: 0;
list-style: none;
}
.main-footer .footer-section form input {
margin-right: 10px;
}
h4 {
position: relative; /* Add relative positioning to the <h3> element */
}
.underline {
width: 45%; /* Adjusted to make the red line shorter */
height: 3px;
background: #e9beba;
border-radius: 3px;
position: absolute;
bottom: -8px; /* Adjusted to position the underline correctly below the text */
left: 10%; /* Centers the underline horizontally */
transform: translateX(-20%); /* This ensures that the underline is centered */
overflow: hidden;
}
.underline span {
width: 15px;
height: 100%;
background: #d25523;
border-radius: 3px;
position: absolute;
top: 0;
left: -15px; /* Starting off-screen to the left */
animation: moving 2s linear infinite;
}
@keyframes moving {
0% {
left: -20px; /* Start animation off-screen */
}
100% {
left: 100%; /* Move the span across to the right */
}
}
.github-star a {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
color: #fff;
background: linear-gradient(90deg, #5592ed 0%, #ec8926 100%);
border-radius: 25px;
text-decoration: none;
font-weight: bold;
position: relative;
box-shadow: 0px 4px 15px rgb(217 89 14 / 81%);
}
.github-star a:hover {
background: linear-gradient(90deg, #ec8926 0%, #2196F3 100%);
box-shadow: 0px 6px 20px #F44336;
}
.github-star a i {
margin-right: 8px;
}