-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreateAccount.css
129 lines (111 loc) · 1.86 KB
/
createAccount.css
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
* {
margin: 0;
padding: 0;
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: #50187382;
cursor: pointer;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #F3F3F3;
}
#container {
width: 400px;
height: 460px;
margin: 200px;
background-color: #FBFBFB;
border: 2px solid #ECEFF7;
}
.title {
width: 400px;
height: 60px;
display: block;
font-size: 20px;
font-weight: 500;
border-bottom: 2px solid #e5e5e5;
box-sizing: border-box;
padding: 20px 0 10px 40px;
}
.title p {
display: inline;
}
ul {
height: 260px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
#mainBox {
border-bottom: 2px solid #e5e5e5;
position: relative;
}
#mainBox li {
font-style: 18px;
color: #5e5e5e;
}
#mainBox li input {
width: 260px;
height: 30px;
border-radius: 4px;
border: 2px solid #e5e5e5;
text-indent: 1em;
font-size: 16pxs;
}
#mainBox li input:focus {
outline-color: #50187382;
}
#eyeClose {
/* display: none; */
width: 20px;
position: absolute;
bottom: 32px;
right: 74px;
}
#eyeOpen {
display: none;
width: 20px;
position: absolute;
bottom: 32px;
right: 74px;
}
#btn a {
text-decoration: none;
color: #5e5e5e;
}
#btn {
height: 110px;
display: flex;
justify-content: center;
position: relative;
box-sizing: border-box;
}
.btn {
width: 200px;
height: 30px;
color: #5e5e5e;
font-size: 16px;
border: none;
position: absolute;
top: 40px;
cursor: pointer;
}
#turnToSignUp {
width: 400px;
height: 30px;
box-sizing: border-box;
position: relative;
}
#turnToSignUp div {
position: absolute;
right: 20px;
bottom: 14px;
}