сверстана первая страница, доабавлен футер

This commit is contained in:
DmitriyB
2022-07-25 15:02:40 +05:30
parent f0686d3790
commit 6f799e8463
8 changed files with 211 additions and 0 deletions
+106
View File
@@ -0,0 +1,106 @@
.main-part-container {
position: relative;
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
color: #FFFFFF;
padding: 50px 200px 16px 200px;
box-sizing: border-box;
}
.background-image {
z-index: -1;
top: 0;
left: 0;
position: absolute;
width: 100%;
height: 100%;
background: url('backgroundImage.svg') 50% 50% no-repeat;
background-size: auto 100%;
}
.main-part-header {
box-sizing: border-box;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.main-part-header-logo {
width: 53px;
height: 85px;
}
.main-part-header-lang {
font-weight: 400;
font-size: 18px;
line-height: 22px;
width: 90px;
display: flex;
justify-content: space-between;
gap: 8px;
}
.main-part-header-lang {
display: flex;
justify-content: center;
align-items: center;
border-radius: 4px;
}
.main-part-header-lang.ru {
background-color: #CE56C2;
}
.main-part-text-container {
width: 800px;
display: flex;
flex-direction: column;
gap: 40px;
}
.main-part-text-title {
font-weight: 700;
font-size: 56px;
line-height: 100%;
max-width: 570px;
}
.main-part-text-descript {
font-weight: 400;
font-size: 18px;
line-height: 130%;
max-width: 450px;
}
.main-part-text-button {
width: 320px;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
font-size: 17px;
line-height: 21px;
background: #CE56C2;
border-radius: 8px;
border: none;
color: #FFFFFF;
}
.main-part-footer-container {
font-weight: 500;
font-size: 14px;
line-height: 130%;
color: #F2F2F2;
display: flex;
flex-direction: column;
position: relative;
}
.main-part-footer-text::before {
content: '*';
}