-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrainmap_styles.css
More file actions
52 lines (43 loc) · 1.03 KB
/
rainmap_styles.css
File metadata and controls
52 lines (43 loc) · 1.03 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
/*//////////////////////////////////////////////////////////////////
// Title: rainmap_styles.css
//
// Purpose: adds style to map features
//
// Update History:
// 2/7/16 aaron krupp file complete, added title block
//////////////////////////////////////////////////////////////////
*/
/* adds style the html body and map div objects */
html, body {width:100%; height:100%; padding: 0; margin: 0;}
#WaterMap {
width: 600px;
height:425px;
background: teal;
position: relative;
margin: 10px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
}
/* CSS formatting for the Caminos de Agua logo in the corner */
img.caminos_logo {
display: inline-block;
z-index: 3;
position: absolute;
left: 15px;
bottom: 15px;
width: 120px;
height: 120px;
opacity: 1;
}
.polygonLabel {
position: absolute;
display: inline-block;
font-size: 13px;
background-color: rgba(255,255,255,0.85);
padding: 2px;
box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3);
border: 0px solid;
border-radius: 3px;
text-indent: -4px;
}