Fixed auth page and adaptation freeDev
This commit is contained in:
parent
943bc1abea
commit
ae3416c4b2
@ -5,6 +5,13 @@ import userIcon from "../../images/userIcon.png";
|
||||
import "./authHeader.scss";
|
||||
|
||||
export const AuthHeader = ({}) => {
|
||||
function scrollToForm() {
|
||||
window.scrollTo({
|
||||
top: 850,
|
||||
behavior: "smooth",
|
||||
});
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="auth-header">
|
||||
<div className="auth-header__logo">
|
||||
@ -27,7 +34,12 @@ export const AuthHeader = ({}) => {
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<a href="#">
|
||||
<a
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
scrollToForm();
|
||||
}}
|
||||
>
|
||||
<img src={userIcon}></img>
|
||||
</a>
|
||||
</div>
|
||||
|
@ -51,6 +51,10 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -61,7 +65,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
@media (max-width: 1375px) {
|
||||
.auth-header {
|
||||
display: none;
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
import React, { useState } from "react";
|
||||
|
||||
import arrow from "../../images/sideBarArrow.svg";
|
||||
import LogoITguild from "../../images/LogoITguild.svg";
|
||||
|
||||
import "./sidebar.scss";
|
||||
|
||||
@ -41,9 +42,7 @@ export const SideBar = () => {
|
||||
|
||||
<div className={active ? "auth-body active" : "auth-body"}>
|
||||
<div className="auth-body__title">
|
||||
<h3>IT</h3>
|
||||
<p>guild</p>
|
||||
<span>Аутстафинговая компания</span>
|
||||
<img src={LogoITguild}></img>
|
||||
</div>
|
||||
<ul className="auth-body__navigation">
|
||||
<li>
|
||||
|
@ -7,7 +7,7 @@
|
||||
height: 100%;
|
||||
background: #e1fccf;
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
@media (max-width: 1375px) {
|
||||
position: fixed;
|
||||
width: 100% !important;
|
||||
height: 80px;
|
||||
@ -75,7 +75,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
@media (max-width: 1375px) {
|
||||
flex-direction: row;
|
||||
height: 100%;
|
||||
|
||||
@ -121,25 +121,7 @@
|
||||
|
||||
&__title {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
h3 {
|
||||
color: #52b709;
|
||||
font-size: 35px;
|
||||
line-height: 32px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
p {
|
||||
width: 70%;
|
||||
font-size: 30px;
|
||||
line-height: 32px;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 12px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
&__navigation {
|
||||
@ -175,7 +157,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
@media (max-width: 1375px) {
|
||||
&__title {
|
||||
margin-top: 35px;
|
||||
}
|
||||
@ -199,7 +181,7 @@
|
||||
left: 79px;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
@media (max-width: 1375px) {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 535px;
|
||||
|
@ -125,7 +125,13 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1375px) {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
margin-top: 0;
|
||||
|
||||
&__title {
|
||||
flex-direction: column;
|
||||
padding: 120px 0 56px 0;
|
||||
|
@ -40,7 +40,7 @@ export const FreeDevelopers = ({}) => {
|
||||
<div></div>
|
||||
</div>
|
||||
</div>
|
||||
<button>Код разработчика</button>
|
||||
<button className="button-green">Код разработчика</button>
|
||||
</div>
|
||||
|
||||
<div className="free-dev__body">
|
||||
@ -66,6 +66,25 @@ export const FreeDevelopers = ({}) => {
|
||||
</li>
|
||||
</ul>
|
||||
<p>Время разработки: 2 года.</p>
|
||||
|
||||
<div className="free-dev__body-text-bottom">
|
||||
<h5>
|
||||
Godesigner - сервис для фриланс дизайнеров, копирайтеров и их
|
||||
заказчиков
|
||||
</h5>
|
||||
<p>Стек – PHP (li3), HTML, CSS, JavaScript, MYSQL, Nginx.</p>
|
||||
<ul>
|
||||
<li> Расширение функционала старых модулей проекта</li>
|
||||
<li>создание и проектирование новых модулей сайта</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="logIn">
|
||||
<h3>Для просмотра полного резюме разработчика авторизуйтесь</h3>
|
||||
<Link to={"/auth"} className="button-green">
|
||||
Войти
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -60,23 +60,35 @@
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
background: #52b709;
|
||||
border-radius: 44px;
|
||||
width: 202px;
|
||||
height: 50px;
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
line-height: 32px;
|
||||
color: #ffffff;
|
||||
border: none;
|
||||
@media (max-width: 720px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@media (max-width: 450px) {
|
||||
flex-direction: column;
|
||||
|
||||
&-box {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
img {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
&-name {
|
||||
margin: 10px 0 10px 0;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__body {
|
||||
position: relative;
|
||||
background: #ffffff;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 100px;
|
||||
margin-bottom: 160px;
|
||||
|
||||
&-title {
|
||||
background: #e1fccf;
|
||||
@ -99,6 +111,136 @@
|
||||
font-size: 16px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
&-bottom {
|
||||
margin-top: 50px;
|
||||
opacity: 0.25;
|
||||
}
|
||||
}
|
||||
|
||||
.logIn {
|
||||
position: absolute;
|
||||
bottom: 75px;
|
||||
border: 3px solid #52b709;
|
||||
border-radius: 12px;
|
||||
background: rgba(255, 255, 255, 0.76);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
height: 97px;
|
||||
cursor: pointer;
|
||||
|
||||
h3 {
|
||||
font-weight: 500;
|
||||
font-size: 22px;
|
||||
line-height: 18px;
|
||||
color: #000000;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
a {
|
||||
width: 140px;
|
||||
height: 50px;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@media (max-width: 920px) {
|
||||
flex-direction: column;
|
||||
padding: 15px;
|
||||
height: 20%;
|
||||
|
||||
h3 {
|
||||
margin: 0 0 0 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a {
|
||||
margin-top: 15px;
|
||||
height: 25px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1333px) {
|
||||
.auth-menu {
|
||||
position: fixed;
|
||||
width: 100% !important;
|
||||
height: 80px;
|
||||
margin-bottom: 50px;
|
||||
|
||||
.auth-body.active {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 535px;
|
||||
}
|
||||
|
||||
.auth-body {
|
||||
&__title,
|
||||
&__politic {
|
||||
margin-top: 35px;
|
||||
}
|
||||
|
||||
&__contacts {
|
||||
margin: 50px 0 25px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.free-dev_page {
|
||||
margin-top: 110px;
|
||||
}
|
||||
|
||||
.auth-header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.auth-title {
|
||||
flex-direction: row;
|
||||
height: 100%;
|
||||
|
||||
.text {
|
||||
margin: 0;
|
||||
flex-direction: row;
|
||||
|
||||
.burger {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.outstaffing {
|
||||
margin: 0;
|
||||
width: 150px;
|
||||
font-size: 12px;
|
||||
transform: none;
|
||||
|
||||
img {
|
||||
margin-right: 5px;
|
||||
width: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.button-green {
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
display: flex;
|
||||
background: #52b709;
|
||||
border-radius: 44px;
|
||||
width: 202px;
|
||||
height: 50px;
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
line-height: 32px;
|
||||
color: #ffffff;
|
||||
border: none;
|
||||
}
|
||||
|
9
src/images/LogoITguild.svg
Normal file
9
src/images/LogoITguild.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 10 KiB |
Loading…
Reference in New Issue
Block a user