RegisterStyled.tsx
2.48 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
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 RegisterBackButtonWrapper = styled.div `
width : 100%;
border : none;
display : flex;
flex-direction : row-reverse;
align-items : center;
justify-content : space-between;
margin : 0 0 10px 0;
`;
export const RegisterBackButton = styled.div `
border : none;
border-bottom : 1px solid;
background-color : transparent;
color : #a0a0a0;
cursor : pointer;
font-size : 12px;
font-weight : 500;
letter-spacing : 1px;
padding : 1px 3px;
margin : 0px 20px;
transition : .25s all;
&:hover {
opacity : .7;
}
`;
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 : 5px 10px;
border : none;
border-bottom : 1px solid #ddd;
font-size : 14px;
letter-spacing : 1px;
&::placeholder {
color : #ddd;
}
`;
export const RegisterButtonWrapper = styled.div `
margin : 20px 0 0 0;
width : 100%;
border : none;
display : flex;
justify-content : center;
align-items : center;
`;
export const RegisterButton = styled.button `
padding : 10px 30px;
width : 80%;
cursor : pointer;
background-color : transparent;
border : 1.2px solid;
border-radius : 3px;
color : #343434;
transition : .25s all;
&:hover {
color : #fff;
border : 1.2px solid #343434;
background-color : #343434;
}
`;