Service Box — стиль 10

Подробное описание и демонстрация работы блока о нас под номером №10 для библиотеки Bootstrap. Html и CSS код для реализации блока service box на сайте как на изображении.

html разметка для реализации блока о компании

<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="serviceBox">
<div class="service-icon">
<i class="fa fa-globe"></i>
</div>
<div class="service-content">
<h3>Web Development</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vestibulum tincidunt.
</p>
</div>
</div>
</div>
</div>
</div>

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

.serviceBox{
text-align: center;
}
.serviceBox .service-icon{
width:100px;
height:100px;
line-height: 100px;
font-size: 50px;
border: 1px solid #727cb6;
border-radius: 50%;
margin:0 auto 45px;
color:#727cb6;
}
.serviceBox.green .service-icon{
border: 1px solid #008b8b;
color: #008b8b;
}
.serviceBox.orange .service-icon{
border: 1px solid #e67e22;
color:#e67e22;
}
.serviceBox.pink .service-icon{
border: 1px solid #ed687c;
color: #ed687c;
}
.serviceBox .service-icon > i{
transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon > i{
transform:scale(0.8);
transition: all 0.3s ease 0s;
}
.serviceBox .service-content h3{
font-size: 18px;
font-weight:400;
margin-bottom: 20px;
color:#727cb6;
}
.serviceBox.green .service-content h3{
color: #008b8b;
}
.serviceBox.orange .service-content h3{
color:#e67e22;
}
.serviceBox.pink .service-content h3{
color: #ed687c;
}
.serviceBox .service-content p{
color: hsl(0, 0%, 38%);
font-size: 14px;
line-height: 24px;
}
@media screen and (max-width: 990px){
.serviceBox{
margin-bottom: 25px;
}
}



Теги:
0

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

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