-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurveyform.css
More file actions
79 lines (68 loc) · 1.22 KB
/
surveyform.css
File metadata and controls
79 lines (68 loc) · 1.22 KB
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
body {
width:100%;
height:100%;
background-color:#FBDB93;
color:#BE5B50;
margin:0;
}
label {
display:block;
font-size:20px;
}
fieldset {
border:none;
padding: 10px;
margin-top: 15px;
margin-left: 45px;
}
h1 {
text-align:center;
font-size:40px;
font-family:'Times New Roman', serif;
margin-top:60px;
color:#641B2E;
}
p {
text-align:center;
font-size:20px;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
form {
max-width:1500px;
min-width:900px;
margin: 0 auto;
}
input,select,textarea {
border:1px solid #f3f7ec;
border-radius: 5px;
font-size:15px;
margin-top:8px;
padding: 5px;
}
input[type=text],input[type=email],input[type=number],select,textarea{
width: 90%;
display:block;
}
div {
margin: 30px auto;
max-width: 800px;
background-color: #641B2E;
color: #f3f7ec;
padding:20px;
border-radius: 5px;
}
#name-label {
margin-top: 15px;
}
button {
width:250px;
font-size:17px;
font-weight:bold;
padding:8px;
color: #641B2E;
border:none;
}
button:hover {
background-color: #BE5B50;
color: #f3f7ec;
}