Css Style Our Team — стиль 59

Подробное описание и демонстрация работы блока команда для сайта под номером №59 для библиотеки Bootstrap. Html и CSS код для реализации блока our team’a на сайте как на изображении.

Демо блока наша команда — стиль 59

Williamson

Web Developer

Steve Thomas

Web Developer

Miranda joy

Заголовок
html разметка для реализации блока

<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="our-team">
<div class="pic">
<img src="https://fokit.ru/demo/images/our-team/our-team-style-59/img-1.jpg" alt=""/>
</div>
<div class="team-content">
<h3 class="title">Williamson</h3>
<span class="post">Web Developer</span>
<ul class="social">
<li><a href="#" class="fab fa-facebook"></a></li>
<li><a href="#" class="fab fa-twitter"></a></li>
<li><a href="#" class="fab fa-skype"></a></li>
</ul>
</div>
</div>
</div>

<div class="col-md-3 col-sm-6">
<div class="our-team">
<div class="pic">
<img src="https://fokit.ru/demo/images/our-team/our-team-style-59/img-2.jpg" alt=""/>
</div>
<div class="team-content">
<h3 class="title">Kristiana</h3>
<span class="post">Web Designer</span>
<ul class="social">
<li><a href="#" class="fab fa-facebook"></a></li>
<li><a href="#" class="fab fa-twitter"></a></li>
<li><a href="#" class="fab fa-skype"></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>

css разметка для реализации блока

.our-team{
text-align: center;
background: #161616;
border-radius: 353px 353px 0 0;
transition: all 0.3s ease 0s;
}
.our-team:hover{
background: #816eda;
}
.our-team .pic{
overflow: hidden;
position: relative;
border-radius: 50%;
}
.our-team .pic:before{
content: "";
width: 100%;
height: 100%;
background: #000;
border-radius: 50%;
position: absolute;
top: 0;
left: 0;
opacity: 0;
transition: all 0.5s ease 0s;
}
.our-team:hover .pic:before{
opacity: 0.5;
}
.our-team .pic img{
width: 100%;
height: auto;
}
.our-team .team-content{
padding: 30px 0;
}
.our-team .title{
font-size: 20px;
font-weight: bold;
line-height: 30px;
color: #fff;
margin: 0;
}
.our-team .post{
display: block;
font-size: 16px;
color: #fff;
margin-bottom: 16px;
}
.our-team .social{
padding: 0;
margin: 0;
list-style: none;
}
.our-team .social li{
display: inline-block;
margin-right: 10px;
}
.our-team .social li:last-child{
margin-right: 0;
}
.our-team .social a{
display: inline-block;
width: 33px;
height: 33px;
border-radius: 50%;
font-size: 16px;
color: #404041;
line-height: 30px;
transition: all 0.3s ease 0s;
}
.our-team .social a:hover{
background: #151515;
color: #fff;
}
@media only screen and (max-width: 990px){
.our-team{ margin-bottom: 30px; }
}



Теги:
0

Оставить своё мнение

Ваш e-mail не будет опубликован. Обязательные поля помечены *