-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_maps.css
77 lines (75 loc) · 1.03 KB
/
style_maps.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
#field {
width: auto;
margin-bottom: 1rem;
flex-direction: row;
}
#field *{
vertical-align: middle;
}
#launch {
margin: auto auto;
}
#results {
display: block;
width: 100%;
}
#desc {
font-style: italic;
}
#place {
width: 5%;
}
#mobile_container {
height: 20%;
margin-bottom: 2.5rem;
}
#info {
padding-left: 2%;
}
#map_container {
position: relative;
margin-bottom: 3rem;
}
#select_map {
width: 100%;
}
hr {
margin: 1em 0 1em 0;
}
#information_text {
font-style: italic;
}
@media screen and (min-width: 768px) {
#mobile_search {
display: none;
}
#form {
width: 50%;
min-width: 250px;
margin-right: 2%;
}
.flex-container {
flex-direction: row;
}
}
@media screen and (max-width: 767px) {
#form_container {
background-color: white;
padding: 0 1rem;
padding-bottom: 2rem;
}
#form {
display: none;
}
#mobile_search {
font-size: 16px;
padding: 7px;
margin-bottom: 2px;
flex-direction: row;
transition: display 2s;
transition-timing-function: ease-out;
}
#information_text {
display: none;
}
}