-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (59 loc) · 1.21 KB
/
style.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
body {
background-color: rgb(72, 72, 145);
color: #ffffff;
font-family: roboto;
}
#title {
font-size: 24px;
font-weight: bold;
margin-top: 50px;
font-size: 2em;
}
#title, #description {
text-align: center;
}
#description {
font-size: 18px;
margin-bottom: 30px;
font-style: italic;
}
#survey-form {
width: 44%;
margin: 0 auto;
padding: 40px;
background-color: rgb(30, 30, 68);
border-radius: 5px;
font-size: 1.2em;
}
#survey-form input[type="text"], #survey-form input[type="email"], #survey-form input[type="number"] {
width: 100%;
padding: 12px;
margin-bottom: 20px;
box-sizing: border-box;
border: none;
border-radius: 5px;
}
#survey-form select, #survey-form textarea {
width: 100%;
padding: 12px;
margin-bottom: 20px;
box-sizing: border-box;
border-radius: 5px;
}
#survey-form input[type="radio"], #survey-form input[type="checkbox"] {
margin-right: 10px;
}
#submit {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
cursor: pointer;
width: 100%;
}
#submit:hover {
background-color: #45a049;
}
input {
margin-top: 5px;
}