vue-svg-map
Version:
A set of Vue.js components to display an interactive SVG map
16 lines (15 loc) • 362 B
CSS
.svg-map {
width: 100%;
height: auto;
stroke: #666;
stroke-width: 1;
stroke-linecap: round;
stroke-linejoin: round; }
.svg-map__location {
fill: #a1d99b;
cursor: pointer; }
.svg-map__location:focus, .svg-map__location:hover {
fill: #b8e2b3;
outline: 0; }
.svg-map__location[aria-checked="true"] {
fill: #f4bc44; }