-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
118 lines (104 loc) · 1.78 KB
/
signup.css
File metadata and controls
118 lines (104 loc) · 1.78 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
body{
background-color: teal;
}
.signup-box{
width: 360px;
height: 680px;
margin: auto;
background-color: white;
border-radius: 3px;
}
.login-box{
width:360px ;
min-height:280px ;
margin: auto;
border-radius: 3px;
background-color: white;
}
h1{
text-align: center;
padding-top: 15px;
}
h4{
text-align: center;
}
form{
width: 300px;
margin-left: 20px;
}
form label{
display: flex;
margin-top: 20px;
font-size: 18px;
}
form input{
width: 100%;
padding: 7px;
border: none;
border: 1px solid gray;
border-radius: 6px;
outline: none;
}
.form-control{
position: relative;
}
.form-control input:focus{
outline: 0;
border-color:purple;
}
.form-control small{
color: red;
/* position: relative; */
bottom: 0;
left: 0;
visibility: hidden;
}
.form-control.error small {
visibility: visible;
}
.form-control.success input{
border-color: #2ecc71;
}
.form-control.error input{
border-color: #e74c3c;
}
.form-control i{
position: absolute;
right: 2%;
visibility: hidden;
/* --------------------------------- */
}
.form-control.success i.fa-check-circle{
color: #2ecc71;
visibility: visible;
}
.form-control.error i.fa-exclamation-circle{
color:#e74c3c ;
visibility: visible;
}
input[type="button"]{
width: 320px;
height: 35px;
margin-top: 20px;
border: none;
background-color: rgba(138, 156, 55, 0.767);
color: white;
font-size: 18px;
cursor:pointer;
}
input[type="button"]:hover{
background: gray;
}
p{
text-align: center;
padding-top: 15px;
font-size: 15px;
}
.para-2{
text-align: center;
color: white;
font-size: 20px;
}
.para-2 a{
color: thistle;
}