Css Style Our Team — стиль 27

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

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

Williamson

Заголовок

Kristiana

Web Developer

Miranda joy

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

<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="our-team">
<img src="https://fokit.ru/demo/images/our-team/our-team-style-27/img-1.jpg" alt=""/>
<div class="team-prof">
<h3>Williamson</h3>
<span>Web designer</span>
</div>
<ul class="social-links">
<li><a href="#" class="fab fa-facebook"></a></li>
<li><a href="#" class="fab fa-twitter"></a></li>
<li><a href="#" class="fab fa-google-plus"></a></li>
</ul>
</div>
</div>
</div>
</div>

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

.our-team img{
width: 100%;
height: auto;
border: 2px solid #b4afaf;
border-radius: 5px;
transition: all 0.30s linear 0s;
}
.our-team:hover img{
border:2px solid #14b8b1;
}
.our-team .team-prof h3{
font-size: 18px;
font-weight: bold;
color: #333;
margin: 20px 0;
text-transform: uppercase;
}
.our-team .team-prof span{
font-size: 14px;
color: #808080;
display: block;
margin-bottom: 20px;
text-transform: capitalize;
}
.our-team .social-links{
padding:0;
margin:0;
list-style: none;
}
.our-team .social-links li{
display: inline-block;
margin-right: 15px;
}
.our-team .social-links li a{
color: #6a6060;
font-size: 18px;
transition: all 0.30s linear 0s;
}
.our-team .social-links li a:hover{
color: #14b8b1;
text-decoration: none;
}
.our-team .social-links:after{
content: "";
display: block;
width: 20%;
margin-top: 20px;
border-bottom: 2px solid #fff;
transition: all 0.30s linear 0s;
}
.our-team:hover .social-links:after{
border-bottom: 2px solid #14b8b1;
}
@media only screen and (max-width: 990px){
.our-team{ margin-bottom:20px; }
}



Теги:
0

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

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