File tree Expand file tree Collapse file tree 3 files changed +81
-4
lines changed
Expand file tree Collapse file tree 3 files changed +81
-4
lines changed Original file line number Diff line number Diff line change @@ -290,3 +290,79 @@ body {
290290}
291291
292292/* END NAVIGATION BAR */
293+
294+ /* CSS for Kamera Footer */
295+ .footer {
296+ background-color : # 211d1a ;
297+ color : # f1f1f1 ;
298+ padding : 20px 0 ;
299+ font-family : 'Noto Serif' , serif;
300+ }
301+
302+ .footer-container {
303+ display : flex;
304+ flex-wrap : wrap;
305+ justify-content : space-between;
306+ align-items : flex-start;
307+ max-width : 1200px ;
308+ margin : 0 auto;
309+ padding : 0 20px ;
310+ }
311+
312+ .footer-section {
313+ flex : 1 1 200px ;
314+ margin : 10px ;
315+ }
316+
317+ .footer-section h2 , .footer-section h3 {
318+ font-weight : 700 ;
319+ color : # ffffff ;
320+ margin-bottom : 10px ;
321+ }
322+
323+ .footer-section p , .footer-section ul , .footer-section a {
324+ font-size : 14px ;
325+ line-height : 1.5 ;
326+ color : # bfbfbf ;
327+ }
328+
329+ .footer-section ul {
330+ list-style : none;
331+ padding : 0 ;
332+ }
333+
334+ .footer-section ul li {
335+ margin-bottom : 5px ;
336+ }
337+
338+ .footer-section ul li a {
339+ text-decoration : none;
340+ color : # bfbfbf ;
341+ transition : color 0.3s ease;
342+ }
343+
344+ .footer-section ul li a : hover {
345+ color : # 088178 ;
346+ }
347+
348+ .footer-section .social a {
349+ display : inline-block;
350+ margin : 0 5px ;
351+ }
352+
353+ .footer-section .social img {
354+ width : 30px ;
355+ height : 30px ;
356+ transition : opacity 0.3s ease;
357+ }
358+
359+ .footer-section .social img : hover {
360+ opacity : 0.7 ;
361+ }
362+
363+ .footer-bottom {
364+ text-align : center;
365+ margin-top : 20px ;
366+ font-size : 12px ;
367+ color : # 888888 ;
368+ }
Original file line number Diff line number Diff line change @@ -94,7 +94,8 @@ <h3>Cart Total</h3>
9494 </ div >
9595 </ section >
9696
97-
97+ < footer-component > </ footer-component >
98+ < script src ="footer.js "> </ script >
9899
99100</ body >
100101</ html >
Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ class FooterComponent extends HTMLElement {
3232 <!-- Social Media Section -->
3333 <div class="footer-section social">
3434 <h3>Follow Us</h3>
35- <a href="# "><img src="facebook-icon.png" alt="Facebook"></a>
36- <a href="# "><img src="instagram-icon.png" alt="Instagram"></a>
37- <a href="# "><img src="twitter-icon.png" alt="Twitter"></a>
35+ <a href="https://www.facebook.com "><img src="facebook-icon.png" alt="Facebook"></a>
36+ <a href="https://www.instagram.com "><img src="instagram-icon.png" alt="Instagram"></a>
37+ <a href="https://x.com "><img src="twitter-icon.png" alt="Twitter"></a>
3838 </div>
3939 </div>
4040
You can’t perform that action at this time.
0 commit comments