-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey-form-project.css
76 lines (58 loc) · 1.09 KB
/
survey-form-project.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
body {
width: 100%;
height: 100vh;
margin: 0;
background-color: #4d4480;
color: #ededed;
font-family: Tahoma;
font-size: 18px;
}
label {
display: block;
margin-bottom: 1.125em;
}
h1, p {
text-align: center;
}
#title {
margin-bottom: -10px;
}
#description {
font-style: italic;
}
#survey-form {
background-color: #918abd;
width: 60%;
min-width: 500px;
margin: 10px auto;
padding: 2em 2em;
border-radius: 0.25em
}
input {
border-radius: 0.25em;
}
input, textarea, select {
width: 100%;
min-height: 2em;
margin-top: 0.3em;
border: 2px solid #4b485f
}
.inline {
min-height: unset;
align-items: middle;
width: unset;
}
.check {
margin-top: 0.5em;
}
select {
margin-bottom: 1em;
}
input[type="submit"] {
width: 30%;
display: block;
margin: 1em auto;
background-color: #4b485f;
color: white;
border: 1px solid white;
}