-
Notifications
You must be signed in to change notification settings - Fork 4
/
signUp.css
112 lines (98 loc) · 1.68 KB
/
signUp.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
body {
background-color: #eceff1;
margin: 0;
font-family: 'Roboto', sans-serif;
font-style: normal;
}
body button:focus {
outline: 0;
}
.signUpCard {
width: 500px;
/* height: 700px; */
background: #ffffff;
/* Shadow 1 */
box-shadow: 2px 2px 8px 2px #e0e0e0, -2px -2px 8px 2px #e0e0e0;
border-radius: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.signUpCard h1 {
font-weight: 700;
font-size: 2em;
text-align: center;
color: #7e57c2;
margin-bottom: 64px;
margin-top: 64px;
}
.signUpCard form {
display: block;
margin: 0 50px;
}
.name {
width: 190px;
height: 38px;
display: inline-block;
margin-bottom: 16px;
box-sizing: border-box;
border: 1px solid #c0c0c0;
border-radius: 8px;
padding-left: 15px;
font-size: 1rem;
}
.radio_btn {
margin-bottom: 16px;
}
.signUpCard label {
font-size: 1rem;
}
.rem_textbox {
width: 100%;
height: 38px;
margin-bottom: 16px;
box-sizing: border-box;
border: 1px solid #c0c0c0;
border-radius: 8px;
padding-left: 15px;
font-size: 1rem;
}
.signUpCard button {
display: block;
margin: 16px auto 32px;
background-color: #7e57c2;
border: 0;
width: 250px;
padding: 6px;
border-radius: 8px;
font-family: 'Roboto', sans-serif;
font-style: normal;
font-weight: bold;
font-size: 20px;
color: #ffffff;
cursor: pointer;
}
.signUpCard button:hover {
background-color: #4d2c90;
}
.signUpCard span {
display: block;
margin: 10px auto;
text-align: center;
}
.signUpCard a {
font-size: 1rem;
color: #7e57c2;
cursor: pointer;
display: block;
margin-bottom: 64px;
text-align: right;
text-decoration: none;
}
.signUpCard a:hover {
color: #4d2c90;
}
.h-center {
text-align: center !important;
}