-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (42 loc) · 839 Bytes
/
style.css
File metadata and controls
46 lines (42 loc) · 839 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
/**
* @license
* Copyright 2026 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
/* [START maps_geocoding_reverse] */
/*
* Always set the map height explicitly to define the size of the div element
* that contains the map.
*/
gmp-map {
height: 100%;
}
/*
* Optional: Makes the sample page fill the window.
*/
html,
body {
height: 100%;
margin: 0;
padding: 0;
font-family: Roboto, sans-serif;
}
#floating-panel {
background-color: #fff;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
margin: 10px;
padding: 10px;
font-family: Roboto, sans-serif;
font-size: 1rem;
}
#latlng {
width: 100%;
font-family: Roboto, sans-serif;
font-size: 1rem;
margin-bottom: 4px;
}
#submit {
font-size: 1rem;
}
/* [END maps_geocoding_reverse] */