-
Notifications
You must be signed in to change notification settings - Fork 1
/
formstyle.css
117 lines (117 loc) · 2.02 KB
/
formstyle.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
113
114
115
116
117
body{
background-color: darkgoldenrod;
}
div{
text-align: center;
background-color:blanchedalmond;
margin: 0;
width: 30%;
height: 420px;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
border-radius: 20%;
}
#name{
position: absolute;
left: 38px;
top: 15px;
}
#nameinput{
width: 250px;
position: absolute;
top: 50px;
left: 50px;
font-size: medium;
background-color: white;
color: black;
padding: 10px;
padding-left: 30px;
border: black solid 0.5px;
box-sizing: content-box;
}
#email{
float: left;
position:absolute;
left: 38px;
top: 100px;
}
#emailinput{
width: 250px;
position: absolute;
top: 150px;
left: 50px;
font-size: medium;
color: black;
padding: 10px;
padding-left: 30px;
border: black solid 0.5px;
box-sizing: content-box;
}
#stateq{
position: absolute;
left: 38px;
top: 200px;
}
#state{
position: absolute;
left: 50px;
top: 250px;
padding: 10px;
padding-left: 30px;
width: 250px;
}
#usericon{
position: absolute;
top: 60px;
left: 52px;
width: 30px;
}
#emailicon{
position: absolute;
top: 160px;
left: 52px;
}
#stateicon{
position: absolute;
top: 262px;
left: 58px;
}
#Submit_button{
position: absolute;
top: 350px;
left: 50px;
width: 300px;
height: 30px;
background-color: orange;
border-radius: 10%;
border: palegoldenrod solid 1px;
}
#Submit_button:hover{
background-color: green;
}
#feedback1{
position: absolute;
top: 550px;
left: 550px;
font-size: large;
}
#return_homepage{
position: absolute;
top: 600px;
left: 500px;
width: 300px;
height: 30px;
background-color: orange;
border-radius: 10%;
border: palegoldenrod solid 1px;
}
#return_homepage:hover{
background-color: green;
}
h1{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}