auth candidate adaptive

This commit is contained in:
Victor Batischev 2023-12-05 14:50:15 +03:00
parent 522a67bf6b
commit 6086026617
4 changed files with 26 additions and 18 deletions

View File

@ -5,27 +5,33 @@
padding: 50px 0 35px 56px; padding: 50px 0 35px 56px;
margin-top: 40px; margin-top: 40px;
display: flex; display: flex;
position: relative;
@media (max-width: 1000px) { @media (max-width: 1400px) {
flex-direction: column; margin-top: 100px;
padding: 25px; }
margin-top: 0;
padding: 0; @media (max-width: 900px) {
flex-direction: column-reverse;
padding: 20px;
margin-top: 100px;
} }
} }
&__info { &__info {
margin-right: 115px; margin-right: 115px;
@media (max-width: 1000px) { @media (max-width: 900px) {
order: 3; order: 3;
flex-direction: column;
margin-bottom: 20px;
} }
h3 { h3 {
font-weight: 500; font-weight: 500;
font-size: 30px; font-size: 30px;
line-height: 32px; line-height: 32px;
margin-bottom: 20px; margin-bottom: 20px;
text-align: center;
} }
p { p {
@ -35,7 +41,7 @@
font-size: 16px; font-size: 16px;
line-height: 30px; line-height: 30px;
@media (max-width: 1000px) { @media (max-width: 900px) {
max-width: none; max-width: none;
margin: 15px 25px; margin: 15px 25px;
} }
@ -46,7 +52,7 @@
} }
} }
@media (max-width: 1000px) { @media (max-width: 900px) {
margin-right: 0; margin-right: 0;
display: flex; display: flex;
align-items: center; align-items: center;
@ -70,7 +76,7 @@
font-size: 15px; font-size: 15px;
line-height: 18px; line-height: 18px;
@media (max-width: 1000px) { @media (max-width: 900px) {
max-width: 550px; max-width: 550px;
} }
} }
@ -109,9 +115,8 @@
} }
} }
@media (max-width: 1000px) { @media (max-width: 900px) {
order: 2; order: 2;
margin-bottom: 55px;
} }
} }
@ -120,7 +125,7 @@
right: 48px; right: 48px;
top: -90px; top: -90px;
@media (max-width: 1000px) { @media (max-width: 900px) {
order: 1; order: 1;
position: inherit; position: inherit;
right: inherit; right: inherit;

View File

@ -46,11 +46,14 @@
padding: 8px 26px; padding: 8px 26px;
font-weight: 400; font-weight: 400;
font-size: 16px; font-size: 16px;
line-height: 32px;
@media (max-width: 450px) {
max-width: 180px;
}
} }
span { span {
margin-left: 55px; margin-left: 20px;
font-weight: 400; font-weight: 400;
font-size: 16px; font-size: 16px;
line-height: 32px; line-height: 32px;

View File

@ -146,8 +146,8 @@ export const AuthForCandidate = () => {
<AuthHeader /> <AuthHeader />
<div className="container"> <div className="container">
<AuthBlock <AuthBlock
title="Войти, уже есть доступ" title="Войти, если есть доступ"
description="если вы получили доступ пройдя description="Если вы получили доступ, пройдя
2 шага для входа или хотите узнать 2 шага для входа или хотите узнать
свои результаты в кабинете" свои результаты в кабинете"
/> />

View File

@ -64,6 +64,6 @@
} }
footer { footer {
margin-top: 70px; margin-top: 10px;
} }
} }