-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
96 lines (79 loc) · 1.66 KB
/
styles.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
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background-color: #ffffff;
}
.questionnaire {
max-width: 800px;
margin: 50px auto;
padding: 20px;
border: 1px solid #1900ff;
border-radius: 8px;
background-color: #e3e0e3ba;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.questionnaire h1 {
color: #333;
}
.questionnaire label, .questionnaire input, .questionnaire select {
display: block;
margin: 10px 0;
}
.questionnaire input[type="radio"], .questionnaire input[type="checkbox"] {
display: inline-block;
margin: 0 10px 0 0;
}
#manual-location {
width: 80%;
padding: 8px;
border: 1px solid #3207df;
border-radius: 4px;
}
button {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
button:hover {
background-color: #afec14;
}
ul {
list-style: none;
padding: 0;
}
.hidden {
display: none;
}
/* Add some color to the form elements */
label {
color: #007bff;
}
select, input[type="text"] {
padding: 8px;
border: 1px solid #ea7d00;
border-radius: 4px;
width: 100%;
box-sizing: border-box;
}
input[type="radio"], input[type="checkbox"] {
transform: scale(1.5);
margin-right: 5px;
}
/* Add some color to the radio and checkbox labels */
input[type="radio"] + label, input[type="checkbox"] + label {
color: #150707;
font-weight: bold;
display: inline-block;
margin-bottom: 5px;
}
/* Add some color to the button on hover */
button:hover {
background-color: #0056b3;
}