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: 30px;
  --base-size: 20px;
  --white-clr: #ffffff;
  --bg-clr: #efedeb;
}

.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: #000;
  font-size: var(--title-size);
  margin-bottom: 50px;
}

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

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

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

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

.followus-list a.instagram:hover {
  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:hover {
  background: #1DA1F2;
}

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

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

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

  .followus-scn .followus-follow-heading {
    font-size: calc(var(--title-size) - 6px);
    margin-bottom: 20px;
  }

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

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

  .followus-list a {
    padding: 10px 16px 12px 10px;
    margin: 4px 4px;
  }

}

@media(max-width:767px) {
  .followus-list a {
    min-width: 150px;
  }

}

/**Follow Section End**/

Related Web Elements