This commit is contained in:
Roman Pyrih
2024-11-15 07:06:11 +01:00
parent 4d90bf6de0
commit 89c4f8735c
4 changed files with 117 additions and 11 deletions

View File

@@ -96,6 +96,23 @@ $font1: 'Open Sans', sans-serif;
}
.box-3 {
.c-row {
&-1 {
display: flex;
flex-direction: row;
column-gap: 30px;
margin-bottom: 70px;
}
&-2 {
display: flex;
flex-direction: row;
justify-content: flex-end;
.c-col {
max-width: 1000px;
}
}
}
h2 {
color: #000;
font-family: $font1;
@@ -154,10 +171,9 @@ $font1: 'Open Sans', sans-serif;
p {
color: #000;
font-family: $font1;
font-size: 18px;
font-size: 20px;
text-align: right;
max-width: 1170px;
margin-left: auto;
margin-bottom: 0;
@@ -166,9 +182,51 @@ $font1: 'Open Sans', sans-serif;
// font-size: 16px;
// }
}
.sale-box {
.sales-box {
display: flex;
flex-direction: column;
width: 440px;
align-items: center;
span {
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 100%;
font-family: $font1;
font-weight: 700;
&:nth-child(1) {
font-size: 128px;
width: 325px;
height: 325px;
background: #e9ab6e;
margin-left: 100px;
}
&:nth-child(2) {
font-size: 128px;
height: 300px;
width: 300px;
background: #b79f87;
margin-top: -70px;
margin-bottom: -70px;
margin-right: 100px;
}
&:nth-child(3) {
font-size: 96px;
height: 240px;
width: 240px;
background: #cccccc;
margin-left: 190px;
}
}
}
}