сделал services и call сделал пк версии

This commit is contained in:
Kirill Pet
2024-12-17 20:45:58 +03:00
parent 077f5baf53
commit dd58ea60e5
9 changed files with 226 additions and 12 deletions

View File

@@ -77,10 +77,20 @@ body{
.title-2{
font-weight: 700;
color: var(--text-white);
text-decoration: none;
}
.title-3{
font-weight: 700;
color: var(--text-white);
text-decoration: none;
}
.title-4{
font-weight: 700;
color: var(--text-white);
text-decoration: none;
}
.text-1{
font-weight: 400;
@@ -148,10 +158,27 @@ body{
.btn-big--border--blood{
border-color: var(--blood);
}
.btn-big--border--white{
border-color: var(--text-white);
}
.btn-big--blood{
background-color: var(--blood);
}
.btn-big--social{
padding-right: 66px;
background-position: top 20px right 34px;
background-size: 24px;
background-repeat: no-repeat;
}
.btn-big--tg{
background-image: url(/assets/img/social/telegram.svg);
}
.btn-big--ws{
background-image: url(/assets/img/social/whatsapp.svg);
}
.btn--100-per{
width: 100%;
}

View File

@@ -14,6 +14,9 @@
.title-3{
font-size: 40px;
}
.title-4{
font-size: 24px;
}
.text-1{
font-size: 24px;
}
@@ -117,6 +120,8 @@
/* footer */
.footer{
margin-top: 200px;
padding: 56px 0;
}
.footer__wrapper{
@@ -353,4 +358,82 @@
width: 100% !important;
}
}
/* projects */
.projects{
margin: 34px -20px -20px -20px;
}
/* projects */
/* services */
.services{
margin: 34px -20px -20px -20px;
display: flex;
flex-wrap: wrap;
}
.services__item{
margin: 20px;
height: 257px;
padding: 24px;
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: var(--background-grey);
border-radius: 4px;
}
.services__item:nth-child(1),
.services__item:nth-child(2),
.services__item:nth-child(3){
width: calc(33.3% - 40px);
}
.services__item:nth-child(n+4){
width: calc(50% - 40px);
}
.services__img{
width: 88px;
aspect-ratio: 1;
}
.services__content{
height: 89px;
/* display: flex; */
}
.services__content .title-4{
margin-bottom: 16px;
}
/* services */
/* call */
.call{
padding: 88px 64px;
display: flex;
flex-direction: column;
align-items: center;
background-color: var(--background-grey);
}
.call__content{
margin-top: 56px;
width: 910px;
height: 152px;
display: flex;
justify-content: space-between;
}
.call__item{
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
/* call */
@media only screen and (min-width: 992px) and (max-width: 1032px) {}