-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (69 loc) · 1.33 KB
/
style.css
File metadata and controls
78 lines (69 loc) · 1.33 KB
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
/**
* @license
* Copyright 2026 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
/* [START maps_geocoding_simple] */
gmp-map {
height: 100%;
width: 100%;
}
/*
* Optional: Makes the sample page fill the window.
*/
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
#floating-panel {
background-color: #fff;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
margin: 10px;
padding: 5px;
font: 400 18px Roboto, Arial, sans-serif;
width: 350px;
height: 100px
}
#response-container {
background-color: #fff;
border: 0;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
padding: 5px;
margin: 10px;
font-size: small;
width: 400px;
background-color: rgba(255, 255, 255, 0.95);
max-height: 70vh;
overflow-x: auto;
display: none;
}
#address {
width: 100%;
padding: 10px;
margin: 5px 0;
box-sizing: border-box;
}
#submit,
#clear {
background-color: #fff;
border: 0;
border-radius: 2px;
box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
height: 40px;
cursor: pointer;
}
#clear:hover {
background: rgb(235, 235, 235);
}
#submit {
background-color: #1a73e8;
color: white;
}
#submit:hover {
background-color: #1765cc;
}
/* [END maps_geocoding_simple] */