-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
120 lines (103 loc) · 2.01 KB
/
signup.css
File metadata and controls
120 lines (103 loc) · 2.01 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.SignUp-page{
height: 100%;
width: 100%;
background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url("https://pbs.twimg.com/media/CjHpjw4WgAEDYbS.jpg");
background-position: center;
background-size: cover;
position: absolute;
display: block;
text-align: center;
}
.form-box{
width: 390px;
height: 480px;
display: inline-block;
margin: 2% auto;
background: rgba(0,0,0,0.3);
padding: 15px;
overflow: hidden;
}
.form-box h2{
text-align: center;
margin-bottom: 5px;
color: white;
}
.input-field{
padding: 10px 0;
width: 100%;
margin: 5px 1px;
border-bottom: 1px solid #999;
outline: none;
background: transparent;
}
.submit-btn{
width: 85%;
padding: 3px 30px;
display: block;
margin: auto;
background: yellowgreen;
border: 0;
outline: none;
border-radius: 30px;
}
.check-box{
margin-top: 8px;
margin-bottom: 38px;
}
.condition {
color: white;
font-size: 12px;
position: absolute;
margin-top: 6px;
margin-left: 4px;
}
.form-box h3{
color: white;
margin-top: 10px;
font-size: 13px;
text-align: center;
}
.form-box h3 a{
color: red;
}
.input-group-register{
left: 450px;
text-align: left;
}
.input-group-register input{
color: white;
font-size: 15;
}
span{
display: block;
margin-left: 13px;
color: rgb(227, 243, 9);
font-style: italic;
}
.indicator{
text-align: center;
align-items: center;
display:flex;
justify-content: space-between;
height: 10px;
margin: 10px 0;
display: none;
}
.indicator span{
width: 100%;
height: 100%;
background: lightgray;
border-radius: 5px;
}
form .text{
font-size: 14px;
font-weight: 500;
margin-bottom: 10px;
text-align: center;
display: none;
}