Coder Wrap provides free to use snippets Coder Wrap provides free to use snippets

Back to Footer Options
Preview Source Code
Download
HTML
CSS
/**Typeo CSS Start**/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
 box-sizing: border-box;
}

body {
 font-family: "Poppins", sans-serif;
 color: #444;
 box-sizing: border-box;
 margin: 0px;
}

ul,
li,
a {
 list-style: none;
 text-decoration: none;
 margin: 0px;
 padding: 0px;
}

img {
 max-width: 100%;
}

.container {
 max-width: 1280px;
 width: 100%;
 padding: 0px 15px;
 margin: auto;
}

.container-fluid {
 width: 100%;
 padding: 0px 30px;
}

/**Typeo CSS End**/

/***Footer section start***/
.footer-main {
 background-color: #1C2137;
 color: #fff;
 width: 100%;
}

.ftr-newsletter {
 width: 100%;
 padding: 25px 0;
 border-bottom: #ccc 1px solid;
 background-color: #000000;
}

.ftr-newsletter-inner {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 width: 100%;
 justify-content: space-between;
}

.newsletter-form input[type="submit"]:hover {
 opacity: 0.9;
}

.newsletterxt {
 font-size: 24px;
}

.newsletter-form {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 width: calc(100% - 300px);
}

.newsletter-form input[type="email"] {
 font-size: 16px;
 padding: 16px 15px;
 font-family: 'Poppins';
 outline: none;
 width: calc(100% - 170px);
 border: initial;
}

.newsletter-form input[type="submit"] {
 font-size: 16px;
 text-transform: uppercase;
 font-weight: 700;
 padding: 20px 30px 19px 30px;
 outline: none;
 background-color: #141c40;
 cursor: pointer;
 border: none;
 color: #ffffff;
 font-family: 'Poppins';
 letter-spacing: 1px;
}

.ftr-top-scn {
 text-align: center;
 padding: 20px 0;
 min-height: 250px;
 flex-flow: row wrap;
 display: flex;
 align-items: center;
}

.ftr-menu {
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
}

.ftr-menu li {
 margin: 5px 10px;
 font-size: 18px;
}

.ftr-menu li a {
 color: #fff;
}

.ftr-menu li a:hover {
 text-decoration: underline;
}

.social-media {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 margin: 30px 0px 0px 0px;
 justify-content: center;
}

.social-media li {
 margin: 0px 12px;
}

.social-media li a {
 border-radius: 100%;
 width: 40px;
 height: 40px;
 background-color: #fff;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 transition: 0.5s all;
}

.social-media li a img {
 max-width: 18px;
}

.social-media li a:hover {
 opacity: 0.8;
}

.copy-scn {
 border-top: #ccc 1px solid;
 width: 100%;
 padding: 10px 0;
font-size:14px;
}

.ftr-b-inner {
 display: flex;
 flex-flow: row wrap;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 color: #fff;
}

.ftr-b-inner a {
 color: #fff;
 text-decoration: underline;
}

.ftr-b-inner a:hover {
 text-decoration: none;
}

.payment {
 display: flex;
 flex-flow: row wrap;
}

@media(max-width:1199px) {
 .newsletterxt {
  font-size: 20px;
 }

 .newsletter-form {
  width: calc(100% - 240px);
 }

}

@media(max-width:767px) {
 .ftr-newsletter {
  padding: 15px 0;
 }

 .newsletter-form {
  width: 100%;
  margin-top: 10px;
 }

 .newsletter-form input[type="email"] {
  font-size: 16px;
  padding: 13px 15px;
  width: calc(100% - 140px);
 }

 .newsletter-form input[type="submit"] {
  font-size: 16px;
  padding: 14px 20px 14px 20px;
 }

 .ftr-menu li {
  margin: 5px 8px;
  font-size: 16px;
 }

 .ftr-b-inner {
  text-align: center;
  line-height: 1.3;
  justify-content: center;
 }

 .payment {
  margin-top: 12px;
 }

}

/***Footer section end***/
JS
var dynamicyear = new Date().getFullYear();
document.getElementById('year').innerHTML = dynamicyear;

Related Snippets

Leave a comment

Your email address will not be published. Required fields are marked *