feat: add result section
This commit is contained in:
@@ -1,2 +1,68 @@
|
||||
.Result {
|
||||
padding: 160px;
|
||||
|
||||
.Header {
|
||||
font-family: $font-open-sans;
|
||||
font-weight: $font-semi-bold;
|
||||
font-size: 60px;
|
||||
line-height: 100%;
|
||||
color: $color-text;
|
||||
margin-bottom: 96px;
|
||||
}
|
||||
|
||||
.Row {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
gap: 10vw;
|
||||
margin-bottom: 80px;
|
||||
|
||||
&:nth-child(odd) {
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.Review {
|
||||
flex: 1;
|
||||
|
||||
.Title {
|
||||
font-family: $font-open-sans;
|
||||
font-weight: $font-regular;
|
||||
font-size: 48px;
|
||||
line-height: 100%;
|
||||
color: $color-text;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.Description {
|
||||
font-family: $font-open-sans;
|
||||
font-weight: $font-regular;
|
||||
font-size: 24px;
|
||||
line-height: 100%;
|
||||
color: $color-text;
|
||||
}
|
||||
}
|
||||
|
||||
.Picture {
|
||||
flex: 1;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-radius: 28px;
|
||||
object-fit: contain;
|
||||
max-width: 720px;
|
||||
height: 540px;
|
||||
&:after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background-color: rgba(#292E3D, .4);
|
||||
transition: 250ms background-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user