After Width: | Height: | Size: 749 B |
After Width: | Height: | Size: 436 B |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 605 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 700 B |
@ -1,21 +1,111 @@ |
|||||||
.auth-cellphone{ |
.auth-cellphone { |
||||||
width: 100%; |
width: 100%; |
||||||
height: 100%; |
height: 100%; |
||||||
justify-content:center; |
justify-content: center; |
||||||
align-items:center; |
align-items: center; |
||||||
label{ |
label { |
||||||
text-align:right; |
text-align: right; |
||||||
display: flex; |
display: flex; |
||||||
flex-direction:column; |
flex-direction: column; |
||||||
color: white; |
color: white; |
||||||
input{ |
input { |
||||||
background-color: inherit; |
background-color: inherit; |
||||||
border : 0px; |
border: 0px; |
||||||
border-bottom: 2px solid white; |
border-bottom: 2px solid white; |
||||||
font-size: 24px; |
font-size: 24px; |
||||||
color : white; |
color: white; |
||||||
direction : ltr; |
direction: ltr; |
||||||
text-align:center; |
text-align: center; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.mobile-auth-cellphone { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
justify-content: center; |
||||||
|
align-items: center; |
||||||
|
max-width: 360px; |
||||||
|
margin: 0px auto; |
||||||
|
img { |
||||||
|
margin-bottom: 30px; |
||||||
|
position: relative; |
||||||
|
bottom: 40px; |
||||||
|
} |
||||||
|
h1 { |
||||||
|
font-family: numeralBold; |
||||||
|
font-size: calc(100vw / 15); |
||||||
|
color: #6f7074; |
||||||
|
position: relative; |
||||||
|
bottom: 40px; |
||||||
|
} |
||||||
|
p { |
||||||
|
font-family: numeralLight; |
||||||
|
font-size: calc(100vw / 25); |
||||||
|
color: #6f7074; |
||||||
|
letter-spacing: -1px; |
||||||
|
position: relative; |
||||||
|
bottom: 40px; |
||||||
|
} |
||||||
|
form { |
||||||
|
width: 100%; |
||||||
|
position: relative; |
||||||
|
bottom: 40px; |
||||||
|
img{ |
||||||
|
position: absolute; |
||||||
|
left: 10px; |
||||||
|
top: 6px; |
||||||
|
width: 45px; |
||||||
|
} |
||||||
|
span{ |
||||||
|
text-align: right; |
||||||
|
position: absolute; |
||||||
|
left: 65px; |
||||||
|
top: 5px; |
||||||
|
direction: ltr; |
||||||
|
font-size: calc(100vw / 20); |
||||||
|
color: #a5a5a5; |
||||||
|
} |
||||||
|
input { |
||||||
|
width: 100%; |
||||||
|
background-color: inherit; |
||||||
|
color: #a5a5a5; |
||||||
|
direction: ltr; |
||||||
|
text-align: left; |
||||||
|
background-color: #f2f2f2; |
||||||
|
border: none; |
||||||
|
font-size: calc(100vw / 20); |
||||||
|
padding: 5px 5px 5px 105px; |
||||||
|
border-radius: 5px; |
||||||
|
&:focus { |
||||||
|
outline: 0px; |
||||||
|
} |
||||||
|
} |
||||||
|
button{ |
||||||
|
margin-top: 20px; |
||||||
|
width: 100%; |
||||||
|
border: 0px; |
||||||
|
font-family: numeralMedium; |
||||||
|
background-color: #6CBE44; |
||||||
|
color: white; |
||||||
|
border-radius: 7px; |
||||||
|
padding: 8px; |
||||||
|
font-size: calc(100vw / 20); |
||||||
|
} |
||||||
|
} |
||||||
|
&__footer{ |
||||||
|
position: fixed; |
||||||
|
bottom: 40px; |
||||||
|
div{ |
||||||
|
font-family: numeralMedium; |
||||||
|
font-size: calc(100vw / 28); |
||||||
|
color: #a5a5a5; |
||||||
|
letter-spacing: -1px; |
||||||
|
button{ |
||||||
|
background-color: white; |
||||||
|
border: 0px; |
||||||
|
color: #02733C; |
||||||
|
} |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
@ -1,11 +1,26 @@ |
|||||||
import React, { Component } from "react"; |
import React, { Component } from "react"; |
||||||
|
|
||||||
|
import logo from "../../../assets/icons/logo.png"; |
||||||
|
|
||||||
|
import './index.scss'; |
||||||
export default class Profile extends Component { |
export default class Profile extends Component { |
||||||
render() { |
render() { |
||||||
return ( |
return ( |
||||||
|
<> |
||||||
|
{ |
||||||
|
window.innerWidth > 1000 ? |
||||||
<div className="auth-profile d-flex"> |
<div className="auth-profile d-flex"> |
||||||
|
|
||||||
</div> |
</div> : null |
||||||
|
} |
||||||
|
{ |
||||||
|
window.innerWidth < 1000 ? |
||||||
|
<div className="mobile-auth-profile d-flex flex-column"> |
||||||
|
<img src={logo} alt='دانوین' /> |
||||||
|
</div> : null |
||||||
|
} |
||||||
|
</> |
||||||
|
|
||||||
); |
); |
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -0,0 +1,7 @@ |
|||||||
|
.mobile-auth-profile{ |
||||||
|
width : 100%; |
||||||
|
height : 100%; |
||||||
|
overflow-y: scroll; |
||||||
|
position: relative; |
||||||
|
padding: 15px; |
||||||
|
} |