guild_front/src/pages/PartnerSettings/partnerSettings.scss
2024-08-14 17:12:03 +03:00

279 lines
4.2 KiB
SCSS

.settings {
display: flex;
flex-direction: column;
min-height: 100vh;
background: #f1f1f1;
.info-personal__title {
color: #000000;
font-weight: 700;
font-size: 22px;
line-height: 32px;
}
&__page {
display: flex;
flex-direction: column;
flex: 1;
max-width: 1160px !important;
margin-top: 23px;
}
&__title {
color: #5b6871;
font-size: 20px;
line-height: 24px;
}
&__label {
font-size: 15px;
line-height: 18px;
color: #000000;
margin: 30px 0 10px 0;
}
&__input {
display: flex;
flex-direction: column;
row-gap: 5px;
input {
padding: 5px 10px;
background: #eff2f7;
border-radius: 8px;
height: 35px;
border: none;
font-size: 15px;
outline: none;
}
span {
padding: 5px 10px;
background: #eff2f7;
border-radius: 8px;
height: 35px;
border: none;
font-size: 15px;
outline: none;
}
.error {
color: red;
font-size: 12px;
}
.warning {
border: 1px solid red;
}
}
.old-password {
margin-bottom: 25px;
}
&__agreement {
font-size: 12px;
line-height: 18px;
color: #000000;
font-weight: 300;
&-tg {
font-size: 15px;
font-weight: 400;
line-height: 18px;
img {
width: 40px;
height: 40px;
margin-right: 20px;
}
}
}
&__buttons {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 30px 0 20px;
&-cancel,
&-save {
min-width: 151px;
height: 40px;
font-size: 14px;
line-height: 32px;
}
&-cancel {
color: #6f6f6f;
background: white;
border: 0.5px solid #8dc63f;
&:hover {
background-color: white;
}
}
}
@media (max-width: 1200px) {
&__input {
width: 100%;
}
&__buttons {
&-cancel,
&-save {
width: 120px;
}
}
}
@media (max-width: 440px) {
&__buttons {
flex-direction: column;
gap: 10px;
align-items: center;
}
}
}
.checkbox {
margin: 0px 0 0 20px;
}
.partner-settings {
display: flex;
flex-direction: column;
flex: 1;
margin-bottom: 10px;
&__body {
display: flex;
flex-direction: row;
margin-top: 50px;
column-gap: 40px;
justify-content: center;
}
&__report,
&__login {
width: 500px;
background: #ffffff;
border-radius: 12px;
padding: 30px 60px;
}
&__logo {
display: flex;
align-items: center;
justify-content: space-between;
div {
display: flex;
align-items: center;
label input {
display: none;
}
label span {
cursor: pointer;
height: 24px;
width: 24px;
border: none;
display: inline-block;
position: relative;
background: #eff1f3;
border-radius: 8px;
padding: 3px;
}
[type="checkbox"]:checked + span:before {
content: "\2714";
position: absolute;
top: -5px;
left: 2px;
font-size: 23px;
color: #1c1243;
font-weight: 300;
}
}
}
&__label {
display: flex;
align-items: center;
}
@media (max-width: 1200px) {
margin-bottom: 15px;
&__logo {
flex-direction: column;
align-items: flex-start;
}
&__body {
margin-bottom: 100px;
}
&__report,
&__login {
width: 45%;
height: auto;
}
&__label {
flex-direction: row;
}
}
@media (max-width: 950px) {
&__body {
flex-direction: column;
margin-bottom: 20px;
align-items: center;
}
&__report,
&__login {
width: 100%;
}
&__report {
margin-top: 55px;
margin-bottom: 55px;
}
}
@media (max-width: 570px) {
&__body {
flex-direction: column;
margin-bottom: 20px;
align-items: center;
}
&__report,
&__login {
width: 100%;
height: 100%;
padding: 20px 30px;
}
&__report {
margin-top: 55px;
margin-bottom: 10px;
}
&__logo {
flex-direction: column;
align-items: flex-start;
}
&__label {
flex-direction: row;
}
}
}