-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdesign.css
More file actions
64 lines (53 loc) · 934 Bytes
/
Copy pathdesign.css
File metadata and controls
64 lines (53 loc) · 934 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
form {
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
legend, form, input, h1, h3, h4 {
justify-content: center;
align-content: center;
}
legend {
margin-bottom: 1em;
font-size: 3em;
}
input, select {
padding: 0.5em;
margin: 1em;
justify-content: center;
align-content: center;
}
#submitButton {
border-style: solid;
border-color: #12AE98;
border-width: 3px;
box-shadow: 0 10px 6px -6px;
}
#results {
flex-direction: column-reverse;
justify-content: center;
align-content: center;
}
.result, .displayedData {
justify-content: center;
align-content: center;
padding: 0.25em;
margin: 0.5em;
}
.result label, #mapHeading {
padding: 0.25em;
margin: 0.25em;
}
section.result {
margin: 3.5em 0.2em;
}
.userInputs {
border-style: solid;
}
ol {
flex-wrap: wrap;
max-width: 100%;
}
#noData {
color: red;
}