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;
  }
  /**Typeo CSS End**/
  .team-scn * {
  --base-fm:'Rubik', sans-serif;
  --bnr-cont-w: 550px;
  --base-size:16px;
  --theme-clr: #0c52a1;
  --title:40px;
  --base-clr:#ffffff;
  --secound-clr:#000000;

  }
  .team-scn{
   background-color: #0c5db9;
   text-align: center;
   font-family: var(--base-fm);
   padding: 50px 0px;
   font-size: var(--base-size);
  }
  h2 {
   font-size: var(--title);
   font-family: var(--base-fm);
   color: var(--base-clr)
  }
  .team-list{
  width: 100%;
  padding: 20px 0px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  font-family: var(--base-fm);
  
  }
  .profile-card{
  position: relative;
  width: 220px;
  height: 220px;
  background: #fff;
  padding: 30px;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: .6s;
  margin:15px;
  }
  .profile-card:hover{
  border-radius: 10px;
  height: 260px;
  }
  .profile-card .img{
  position: relative;
  width: 100%;
  height: 100%;
  transition: .6s;
  z-index: 99;
  }
  .profile-card:hover .img{
  transform: translateY(-60px);
  }
  .profile-card .img img{
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: .6s;
  }
  .profile-card:hover .img img{
  border-radius: 10px;
  }
  .profile-card .caption{
  text-align: center;
  transform: translateY(-80px);
  opacity: 0;
  transition: .6s;
  }
  .profile-card:hover .caption{
  opacity: 1;
  }
  .profile-card h3{
  margin: 5px 0px 10px 0px;
  }
  .profile-card p{
  color: var(--theme-clr);
  margin: 2px 0 9px 0;
  font-size: calc(var(--base-size) - 2px)
  }
.social-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 5px;
}

.social-links a {
 width: 18px;
 margin: 0px 7px;
 height: 18px;
 transition: 0.5s all;
}
.social-links a:hover {
 opacity: 0.7;
 margin-top: -4px;
}
.social-links a img {
 border: none;
 box-shadow: none;
 width: 100%;
 border-radius: 0px;
}
@media(max-width: 767px) {
 h2 {
  font-size: calc(var(--title) - 10px);
  margin-bottom: 10px;
 }
}

Related Web Elements