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: #dfdfdf;
 color: #000;
 width: 100%;
}

.ftr-top-inner {
 display: flex;
 flex-flow: row wrap;
 align-items: flex-start;
 width: calc(100% + 30px);
 padding-top: 60px;
 margin-left: -15px;
 padding-bottom: 60px;
}

.ftr-top-inner .ftr-item {
 width: 20%;
 padding: 0px 15px;
}

.ftr-tag {
 font-size: 14px;
 max-width: 230px;
 display: inline-block;
}

.ftr-top-inner .ftr-title {
 font-size: 20px;
 width: 100%;
 margin-bottom: 10px;
 display: inline-block;
 text-transform: uppercase;
}

.ftr-menu li {
 width: 100%;
 margin: 8px 0;
 font-size: 14px;
}

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

.ftr-menu li a:before {
 content: '';
 width: 5px;
 height: 5px;
 border-right: #000 1px solid;
 border-bottom: #000 1px solid;
 display: inline-block;
 margin-right: 8px;
 position: relative;
 transform: rotate(-45deg);
 top: -2px;
}

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

.ftr-logo {
 max-width: 220px;
 margin-bottom: 20px;
}

.copy-scn {
 border-top: #ccc 1px solid;
 width: 100%;
 padding: 16px 0;
 font-size: 12px;
 background-color: #313030;
}

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

.ftrcms-links {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
}

.ftrcms-links a {
 padding: 0px 12px;
 text-decoration: none;
 border-right: #fff 1px solid;
 line-height: 1.1;
 color: #fff;
}

.ftrcms-links a:hover {
 text-decoration: underline;
}

.ftrcms-links a:last-child {
 padding-right: 0;
 border-right: none;
}

@media(max-width:1199px) {
 .ftr-menu li {
  font-size: 15px;
 }

 .ftr-top-inner .ftr-item {
  padding: 0px 10px;
 }

 .ftr-top-inner {
  width: calc(100% + 20px);
  margin-left: -10px;
 }

}

@media(max-width:992px) {
 .ftr-top-inner .ftr-item {
  width: 50%;
  margin-bottom: 25px;
 }

 .ftr-top-inner .ftr-title {
  margin-bottom: 0px;
 }

}

@media(max-width:767px) {
 .ftr-top-inner {
  padding-top: 30px;
  padding-bottom: 0px;
 }

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

 .ftr-b-inner .ftr-b-left, .ftr-b-inner .ftr-b-right {
  padding: 5px 0px
 }

}

/***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 *