first commit

This commit is contained in:
DmitriyB
2022-08-25 11:55:26 +05:00
commit 73b082d874
77 changed files with 36497 additions and 0 deletions
+55
View File
@@ -0,0 +1,55 @@
.header-container {
display: flex;
padding: 35px 40px;
box-sizing: border-box;
color: #FFFFFF;
justify-content: space-between;
align-items: center;
}
.header-logo {
width: 31px;
height: 50px;
}
.header-buttons {
display: flex;
gap: 40px;
}
.header-button {
background-color: transparent;
border: none;
font-weight: 400;
font-size: 16px;
line-height: 125%;
color: #FFFFFF;
cursor: pointer;
}
.header-lang-button {
display: flex;
align-items: center;
padding: 6px 12px;
justify-content: space-between;
box-sizing: border-box;
font-weight: 400;
font-size: 11px;
line-height: 13px;
color: #EBEBEB;
background-color: transparent;
border-radius: 50px;
border: 2px solid #EBEBEB;
}
.header-lang-button-text {
display: flex;
align-self: center;
}
.header-lang-button-icon {
width: 16px;
height: 16px;
background: url('chevronIcon.svg') 50% 50% no-repeat;
background-size: 100% 100%;
}