-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurvey.css
More file actions
44 lines (41 loc) · 751 Bytes
/
Copy pathsurvey.css
File metadata and controls
44 lines (41 loc) · 751 Bytes
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
*{
box-sizing: border-box;
margin: 5px;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
.form {
margin-bottom: 15px;
}
.form label,
.form input,
.form select,
.form p {
display: block;
margin-bottom: 5px;
}
section input {
margin-right: 5px;
display: inline-block;
}
.form input[type="radio"],
.form input[type="radio"] + label {
display: inline-block;
margin-right: 10px;
margin-bottom: 0;
vertical-align: middle;
}
#submit {
background-color: #28a745;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
display: block;
margin: 20px auto;
border-radius: 5px;
}