RegisterStyled.tsx
1.28 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
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 RegisterWrapper = styled.div `
width : 35%;
border : none;
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 RegisterTitle = styled.div `
font-size : 20px;
font-weight : 700;
margin : 0 0 20px 0;
color : #343434;
`;
export const RegisterInfo = styled.div `
width : 90%;
font-size : 13px;
color : #a0a0a0;
`;
export const RegisterInputWrapper = styled.div `
margin : 20px 0 5px 0;
width : 90%;
display : flex;
flex-direction : column;
justify-content : flex-start;
align-items : center;
`;
export const RegisterInputText = styled.div `
width : 80%;
font-size : 14px;
font-weight : 600;
margin : 0 0 10px 0;
color : #343434;
`;
export const RegisterInput = styled.input `
width : 80%;
padding : 0 0 5px 0;
border : none;
border-bottom : 1px solid #ddd;
&::placeholder {
color : #ddd;
}
`;