-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
192 lines (168 loc) · 3.33 KB
/
main.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#title {
text-align: center;
margin-top: 50px;
margin-bottom: 50px;
font-family: "Futura";
border-bottom: solid 2px #000000;
padding-bottom: 5px;
}
html,
body {
background-color: #ffb6c1;
text-align: center;
font-family: "futura";
margin-bottom: 50px;
}
/*this is for the form itself*/
#outter-form {
background-color: #d3d3d3;
width: 75%;
margin: 50px auto;
padding: 60px 50px 100px 50px;
border-radius: 10px;
box-shadow: 10px 10px 20px rgba(50, 0, 0, 0.9);
}
#description {
margin-bottom: 20px;
}
#name {
margin: 0 20px 20px 19px;
width: 250px;
height: 30px;
border: solid 0.5px;
border-radius: 5px;
padding-left: 5px;
}
#name-label {
position: relative;
left: -5px;
}
#email {
margin: 0 20px 20px 25px;
width: 250px;
height: 30px;
border: solid 0.5px;
border-radius: 5px;
padding-left: 5px;
}
#number {
margin: 0 20px 20px 34px;
width: 250px;
height: 30px;
border: solid 0.5px;
border-radius: 5px;
padding-left: 5px;
}
#number-label {
position: relative;
left: 9px;
}
/*this is for the label that asks about higher level of education*/
#level {
position: relative;
left: -276px;
}
#dropdown {
height: 30px;
width: 140px;
padding: 5px;
margin: 0px 0px 20px 0px;
position: relative;
bottom: 22px;
left: -25px;
border: solid 0.5px;
}
/*this is for the question for the radios*/
#opinion {
position: relative;
left: -265px;
}
.radios {
text-align: justify;
position: relative;
left: 390px;
bottom: 36px;
}
/*this is for the first set lists*/
.list-button {
position: relative;
list-style: none;
}
/*this is for the headline of the checkboxes*/
#majors {
position: relative;
right: 290px;
}
/*this is for the (check all that applies)*/
#check {
position: relative;
left: 15px;
margin-top: auto;
}
/*this is for the checkboxes themeslves*/
.checkbox1 {
position: relative;
bottom: 115px;
right: 110px;
}
/*this is for the second set of lists*/
.list-checkbox {
position: relative;
bottom: 135px;
left: 420px;
list-style: none;
text-align: justify;
}
#text-area {
position: relative;
bottom: 100px;
left: 29px;
padding-left: 5px;
border: solid 0.5px;
border-radius: 5px;
}
/*this is for (additional thoughts)*/
#final-thoughts {
position: relative;
bottom: 148px;
left: -35px;
}
#submit {
position: relative;
left: -46px;
bottom: 75px;
width: 70px;
height: 35px;
border: solid #800020 0.5px;
border-radius: 5px;
font-size: 14px;
background-color: #ffb6c1;
color: #800020;
}
@media (max-width: 700px) {
html, body {
position: absolute;
display: block;
text-align: justify;
}
}
@media (max-width: 600px) {
#outter-form {
position: relative;
display: block;
text-align: justify;
}
#survey-form {
display: block;
text-align: justify;
}
#level {
position: absolute;
left: 100px;
text-align: justify;
display: block;
}
.list-button {
float: right;
}
}