This commit is contained in:
SBD
2023-12-10 18:53:14 +03:00
parent 31ef16bf43
commit 9a7a79a3b9
5 changed files with 151 additions and 9 deletions

View File

@@ -434,7 +434,6 @@ body.n_scroll{
}
.photo_container_descript_process{
background: #ffffff;
text-align: center;
width: 150px;
height: 150px;
@@ -1392,3 +1391,76 @@ body.n_scroll{
/* examples project*/
.b_projects_slider{
display: flex;
flex-wrap: wrap;
flex-direction: row;
width: 100%;
justify-content: space-between;
align-items: center;
}
.right_part_b_projects_slider{
transform: rotate(180deg);
}
.info_part_b_projects_slider{
padding: 0 30px;
width: 87%;
}
.el_container_projects_slider{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
flex-direction: row;
}
.el_container_projects_slider.hide{
display: none;
}
.left_part_proj{
width: 47.5%;
margin-right: 2.5%;
}
.title_proj{
font-size: 16px;
font-weight: 500;
color: #0C54A0;
border-radius: 5px;
background: rgba(0, 63, 129, 0.30);
padding: 5px;
width: 158px;
margin-bottom: 15px;
}
.name_proj{
font-size: 20px;
font-weight: 600;
margin-bottom: 30px;
text-transform: uppercase;
}
.task_title{
font-size: 14px;
font-weight: 600;
margin-bottom: 15px;
}
.task_description{
font-size: 14px;
font-weight: 400;
}
.right_part_proj{
width: 47.5%;
margin-left: 2.5%;
}
.img_proj{
width: 100%;
height: 100%;
object-fit: scale-down;
object-position: center;
}