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

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

* {
 box-sizing: border-box;
}

body {
 margin: 0px;
 background-color: #fff;
}

/**Typeo CSS End**/
.followus-scn, .followus-scn * {
 --page-width: 1230px;
 --base-fm: 'Rubik', sans-serif;
 --title-size: 24px;
 --base-size: 18px;
 --white-clr: #ffffff;
 --bg-clr: #efedeb;
}

.followus-scn {
 background-size: cover;
 opacity: 0.9;
}

.page-width {
 max-width: var(--page-width);
 padding: 0 15px;
 margin: auto;
 width: 100%;
}

/**Follow Section Start**/
.followus-scn {
 width: 100%;
 text-align: center;
 padding: 50px 0;
 font-family: var(--base-fm);
}

.followus-scn .followus-follow-heading {
 font-weight: 700;
 color: var(--white-clr);
 font-size: var(--title-size);
 margin-bottom: 20px;
}

.followus-desc {
 max-width: 800px;
 margin: auto;
 color: var(--white-clr);
 font-size: calc(var(--base-size));
 line-height: 1.5;
}

.followus-list {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 margin-top: 30px;
}

.followus-list a {
 padding: 20px 28px;
 background-color: #000;
 margin: 0px 10px;
 color: var(--white-clr);
 font-size: var(--base-size);
 font-weight: 300;
 border-radius: 6px;
 transition: 0.5s all;
 text-decoration: none;
}

.followus-list a img {
 filter: brightness(0) invert(1);
 width: 34px;
 display: inline-block;
 vertical-align: middle;
}

.followus-list a.facebook {
 background: #4267B2;
}

.followus-list a.instagram {
 background: transparent linear-gradient(90deg, #C32AA3 0%, #4C5FD7 28%, #7232BD 51%, #F46F30 78%, #FFDC7D 100%) 0% 0% no-repeat padding-box;
}

.followus-list a.twitter {
 background: #1DA1F2;
}

.followus-list a.youtube {
 background: #FF0000;
}

.followus-list a.linkedin {
 background: #0a66c2;
}

@media(max-width:992px) {
 .followus-scn {
  padding: 30px 0;
 }

 .followus-follow .followus-follow-heading {
  padding-bottom: 10px;
 }

 .followus-follow {
  padding: 30px 0;
 }

 .followus-list a {
  padding: 12px 15px;
  margin: 0px 6px;
 }

 .followus-list a img {
  width: 24px;
 }

}

/**Follow Section End**/

Related Web Elements