-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup2.css
99 lines (94 loc) · 1.71 KB
/
signup2.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
body {
background-color: #87CEEB;
font-family: 'Roboto', sans-serif;
}
div
{
border-radius: 10px;
background-color: whitesmoke;
padding: 20px;
width: 600px;
height: 610px;
margin-top: 51px;
margin-bottom: 20px;
margin-right: 50px;
margin-left: 80px;
}
input[type=text], select {
width: 70%;
padding: 12px 20px;
margin: 16px 15px;
display: inline-block;
border: 1px solid #ccc;
border-radius: 100px ;
box-sizing: border-box;
margin-right: 400px;
font-size: 18px;
margin-left: 14%;
outline: none !important;
}
input[type=email], select {
width: 70%;
padding: 12px 20px;
margin: 14px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 100px;
box-sizing: border-box;
margin-right: 400px;
font-size: 18px;
margin-left: 14%;
outline: none !important;
}
input[type=password], select {
width: 70%;
padding: 12px 20px;
margin: 14px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 100px;
box-sizing: border-box;
margin-right: 150px;
margin-left: 14%;
font-size: 18px;
outline: none !important;
}
input[type=submit] {
width: 30%;
background-color: #006DB5;
color: white;
padding: 15px 15px;
margin: 25px 0;
border: none;
border-radius: 100px;
cursor: pointer;
font-size: 18px;
outline: none !important;
}
input[type=submit]:hover {
background-color: #ddd;
color: black;
font-size: 18px;
}
h2{
color: black;
margin-top: -3px;
margin-bottom: 15px;
margin-right: 95px;
margin-left: 80px;
font-size: 35px;
padding-top: 13px;
}
h4{
color:#006DB5;
margin-top: 15px;
margin-bottom: 15px;
margin-right: 80px;
margin-left: 80px;
font-size: 20px;
}
a
{
color: #7F00FF;
text-decoration: none;
}