bba80f4511
text will pleasantly flow on right side rather than appearing under icon
143 lines
2.3 KiB
CSS
143 lines
2.3 KiB
CSS
/**
|
|
* Map legend
|
|
*/
|
|
.map-legend {
|
|
position: absolute;
|
|
bottom: 3.5rem;
|
|
right: 10px;
|
|
z-index: 1000;
|
|
|
|
min-width: 14rem;
|
|
max-width: 14rem;
|
|
max-height: 60%;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
background: white;
|
|
border-radius: 4px;
|
|
padding: 0.5rem 0rem 0.25rem;
|
|
border: 1px solid #fff;
|
|
box-shadow: 0px 0px 1px 1px #222222;
|
|
}
|
|
|
|
.map-legend .logo {
|
|
display: none;
|
|
}
|
|
@media (min-width: 990px) {
|
|
.map-legend .logo {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
/* Prevent legend from overlapping with attribution */
|
|
@media(min-width: 392px) {
|
|
.map-legend {
|
|
bottom: 2.5rem;
|
|
}
|
|
}
|
|
@media (min-width: 760px){
|
|
.map-legend {
|
|
bottom: 1.5rem;
|
|
}
|
|
}
|
|
@media (min-width: 990px) {
|
|
.map-legend {
|
|
bottom: 2.5rem;
|
|
}
|
|
}
|
|
@media (min-width: 1129px){
|
|
.map-legend {
|
|
bottom: 1.5rem;
|
|
}
|
|
}
|
|
|
|
.map-legend .style-select {
|
|
background-color: inherit;
|
|
padding: 0.5rem 0.25rem;
|
|
margin: 0.25rem 0.5rem;
|
|
width: auto;
|
|
font-size: 18px;
|
|
border: 1px solid;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.map-legend .h4,
|
|
.map-legend p,
|
|
.data-legend {
|
|
padding: 0 0.5rem;
|
|
}
|
|
.map-legend p {
|
|
margin: 0.25rem 0 0.5rem;
|
|
}
|
|
|
|
.map-legend .legend-disclaimer {
|
|
font-size: 0.8em;
|
|
padding:0;
|
|
}
|
|
.data-legend {
|
|
overflow: auto;
|
|
list-style: none;
|
|
margin-bottom: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.data-legend li {
|
|
display: flex;
|
|
}
|
|
|
|
.data-legend .key {
|
|
display: inline-block;
|
|
width: 1.3rem;
|
|
height: 1.3rem;
|
|
margin-right: 0.3rem;
|
|
vertical-align: middle;
|
|
overflow: hidden;
|
|
border: solid 1px #ddd;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.data-legend h6 {
|
|
margin-top: 5px;
|
|
}
|
|
.map-legend .data-intro {
|
|
padding: 0 0.5rem;
|
|
opacity: 0.5;
|
|
}
|
|
.expander-button {
|
|
display: inline-block;
|
|
position: absolute;
|
|
bottom: 1rem;
|
|
right: 0.5rem;
|
|
|
|
height: 1rem;
|
|
width: 1rem;
|
|
line-height: 0.5;
|
|
padding: 0;
|
|
}
|
|
.expander-button:focus,
|
|
.expander-button:active,
|
|
.expander-button:hover {
|
|
box-shadow: none;
|
|
}
|
|
/* hides expander/hider button of legend on a small screens */
|
|
/*
|
|
@media (min-height: 670px) and (min-width: 880px) {
|
|
.expander-button {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
*/
|
|
|
|
.map-legend .logo {
|
|
padding: 0 0.5rem 0.5rem;
|
|
}
|
|
.map-legend .logo .logotype {
|
|
font-size: 1.9rem;
|
|
margin-bottom: -2px;
|
|
}
|
|
.map-legend .logo .cell {
|
|
height: 12px;
|
|
width: 12px;
|
|
}
|