LoginStyled.tsx
1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import styled from 'styled-components';
export const Container = styled.div `
width : 100%;
height : 80vh;
position : absolute;
display : flex;
justify-content : center;
align-items : center;
`;
export const LoginWrapper = styled.div `
width : 35%;
border : 1px solid #ddd;
border-radius : 3px;
display : flex;
flex-direction : column;
justify-content : center;
align-items : center;
padding : 30px 3px;
box-shadow: 0px 0px 10px #a0a0a0;
`;
export const LoginInputWrapper = styled.div `
margin : 10px 0;
width : 80%;
`;
export const LoginEachInputWrapper = styled.div `
display : flex;
flex-direction : column;
justify-content : center;
`;
export const LoginInputText = styled.div `
width : 100%;
margin : 30px 0 10px 0;
`;
export const LoginInput = styled.input `
border : 1px solid #a0a0a0;
padding : 10px;
border-radius : 3px;
width : 100%;
align-self : center;
`;
export const LoginButtonWrapper = styled.div `
width: 30%;
display : flex;
flex-direction : row;
justify-content : center;
align-items : center;
`;
export const LoginButton = styled.button `
margin : 30px 0 5px 0;
background-color : #fff;
border : 1px solid #a0a0a0;
border-radius : 5px;
padding : 10px 30px;
cursor : pointer;
transition : .25s all;
color : #343434;
&:hover {
background-color : #343434;
color : #fff;
}
`;