-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (79 loc) · 1.31 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
68
69
70
71
72
73
74
75
76
77
78
79
80
@import "node_modules/ol/ol.css";
@import "node_modules/@geoapify/geocoder-autocomplete/styles/minimal.css";
html, body {
margin: 0;
height: 100%;
font-family: sans-serif;
}
.container {
display: flex;
flex-flow: column;
justify-content: space-between;
height: 100%;
}
#header {
font-family: sans-serif;
text-align: center;
text-transform: uppercase;
padding: 0.5ex;
margin: 0;
background: #717;
color: #eee;
}
.initial {
color: #ee4;
}
#locate {
background-color: white;
font-size: 24px;
border: solid;
height: 38px;
width: 38px;
text-align: center;
margin-right: 2px;
color: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(0, 0, 0, 0.3);
}
#geoloc {
flex-grow: 0;
display: flex;
flex-flow: row;
margin: 1em auto;
width: 100%;
}
#adresse {
flex: 1;
position: relative;
}
#info {
flex: 15em;
padding: 2px;
}
#info table {
width: calc(100% - 2em);
margin: 0 1em 1em 1em;
}
#info table td:first-child {
background: #eee;
}
#info table td:first-child + td {
width: 75%;
}
#info table td {
padding: 2px;
}
#info p {
padding: 0 1em 1em 1em;
}
#info a {
text-decoration: none;
color: #717;
}
#map {
flex: 100%;
}
@media (max-width: 799px) {
.desktop {
display: none;
}
}