-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
84 lines (69 loc) · 918 Bytes
/
index.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
* {
box-sizing: border-box;
}
body {
font-family: 'Nunito', sans-serif;
background-color: #001f3f;
color: white;
}
h1,
h2 {
font-family: 'Staatliches', cursive;
}
h1 {
font-size: 3.5em;
}
h2 {
font-size: 3em;
}
a {
color: #FFDC00;
}
button,
input[type="text"] {
padding: 5px;
}
button:hover {
cursor: pointer;
}
ul {
list-style: none;
padding: 0 0;
margin: 0 0;
}
.error-message {
padding: 0 0;
margin: 0 0;
}
li {
padding: 10px;
}
li,
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.container,
header,
form,
#results,
.error-message {
margin: 0 auto;
max-width: 90%;
margin-left: auto;
margin-right: auto;
}
.error-message {
color: red;
}
.hidden {
display: none;
}
#mapid {
height: 500px;
margin-bottom: 2em;
max-width: 90%;
margin-right: auto;
margin-left: auto;
}