/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

#mapbox {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/*
TODO: Change image based on place health/strength {0,1,2}.png
*/
#mapbox .place-marker {
    width: 10em;
    height: 10em;
    background-image: url(../img/place/white.png);
    background-size: contain;
}

#mapbox .place-marker.place-color-blue {
    background-image: url(../img/place/blue.png);
}

#mapbox .place-marker.place-color-red {
    background-image: url(../img/place/red.png);
}

#mapbox .place-marker.place-color-green {
    background-image: url(../img/place/green.png);
}

#mapbox .place-marker.place-color-lightblue {
    background-image: url(../img/place/lightblue.png);
}

#mapbox .place-marker.place-color-yellow {
    background-image: url(../img/place/yellow.png);
}

#mapbox .place-marker.place-color-deeppurple {
    background-image: url(../img/place/deeppurple.png);
}