-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (39 loc) · 817 Bytes
/
style.css
File metadata and controls
40 lines (39 loc) · 817 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
/*
* @license
* Copyright 2025 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
/* [START maps_3d_marker_interactive] */
/* * Always set the map height explicitly to define the size of the div element
* that contains the map.
*/
html,
map {
height: 100%;
}
body {
height: 100%;
margin: 0;
padding: 0;
}
.textContainer {
background-color: #4d90fe;
box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
margin: 10px;
font: 400 18px Roboto, Arial, sans-serif;
overflow: hidden;
position: absolute;
left: 50%;
bottom: 5px;
transform: translateX(-50%);
border: 1px solid white;
border-radius: 2px;
padding: 5px;
z-index: 1000;
}
.text {
color: white;
font-size: 1em;
text-align: center;
}
/* [END maps_3d_marker_interactive] */