-
Notifications
You must be signed in to change notification settings - Fork 0
/
signupstyle.css
105 lines (78 loc) · 1.3 KB
/
signupstyle.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
*
{
box-sizing: border-box;
}
body
{
margin: 0px;
background-color: none;
}
div.content
{
width: 900px;
margin-left: 300.5px;
padding-left: 100px;
padding-top: 60px;
}
div.content h2
{
text-align: left;
color: black;
font-family: "Poppins", sans-serif;
font-size: 50px;
font-weight: bold;
}
div.blank label
{
float:left;
font-size: 18px;
font-family: "Poppins", sans-serif;
font-weight: bold;
width:220px;
}
div.blank input
{
width: 300px;
height: 30px;
border: 2px solid black;
border-radius: 7px;
font-size: 18px;
}
div.blank p
{
display: inline;
font-size: 18px;
font-family: "Poppins", sans-serif;
font-weight: bold;
width:220px;
}
div.content select
{
width: 300px;
height: 30px;
font-size: 18px;
border: 2px solid black;
border-radius: 7px;
font-weight: bolder;
}
div.botton input
{
width:100px;
background-color: white;
border: 3px solid black;
border-radius: 7px;
font-size: 18px;
font-family: "Poppins", sans-serif;
font-weight: bold;
}
div.botton input:hover
{
background-color: #f44336;
border: 3px solid #f44336;
color: white;
}
#uname_error, #email_error, #password_error, #cpassword_error
{
color: #f44336;
float: right;
}