-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (80 loc) · 1.55 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
*{
margin: 0;
padding: 0;
font-family: Calibri, serif;
font-weight: lighter;
}
html,body{
background-color: #d6e8e3;
}
/******************* Estilos del menú *******************/
.menuSection{
height: 100%;
width: 15%;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
}
a#tituloMenu{
width: 100%;
height: auto;
text-align: center;
font-size: 1.2em;
color: white;
padding-top: 15px;
padding-bottom: 15px;
background-color: darkgray;
}
a.menuItem{
display: inline-block;
color: white;
text-align: center;
text-decoration: none;
height: auto;;
width: 100%;
padding-top: 5px;
padding-bottom: 5px;
}
.menuItem:hover {
background-color: darkgray;
}
.menuItem:active {
background-color: #fcf6ff;
color: #111111;
}
/******************* Estilos del mapa *******************/
section.map{
background-color: red;
height: 100%;
width: 100%;
position:absolute;
}
.infoDetailLabel{
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: left;
vertical-align: top;
padding-right: 3px;
min-width: 60px;
max-width: 150px;
}
.infoDetailContent {
min-height: 21px;
min-width: 150px;
max-width: 287px;
word-wrap: break-word;
text-align: left;
}
#map-infowindow-attribute-table td {
border-width: 0;
padding: 0;
padding-bottom: 2px;
margin: 0;
vertical-align: top;
}