Game/www/css/map.css

47 lines
1.1 KiB
CSS
Raw Normal View History

/*
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/2.png);
background-size: contain;
}
2019-05-22 11:28:44 -06:00
#mapbox .place-marker.place-color-blue {
background-image: url(../img/place/blue.png);
}
2019-05-22 11:28:44 -06:00
#mapbox .place-marker.place-color-red {
background-image: url(../img/place/blue.png);
}
2019-05-22 11:28:44 -06:00
#mapbox .place-marker.place-color-green {
background-image: url(../img/place/green.png);
}
2019-05-22 11:28:44 -06:00
#mapbox .place-marker.place-color-lightblue {
background-image: url(../img/place/lightblue.png);
}
2019-05-22 11:28:44 -06:00
#mapbox .place-marker.place-color-yellow {
background-image: url(../img/place/yellow.png);
}
2019-05-22 11:28:44 -06:00
#mapbox .place-marker.place-color-deeppurple {
background-image: url(../img/place/deeppurple.png);
}