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
|
/*
* Stylesheets for Kartograph map
*/
.UserCountryMap_map svg path {
stroke-linejoin: round;
}
.UserCountryMap_map svg .countries {
cursor: pointer;
stroke-width: 0.5px;
stroke: #545C6D;
}
.UserCountryMap_map svg .context {
stroke: #BBBBBB;
fill: #F6F5F3;
stroke-width: 0.5px;
}
.UserCountryMap_map svg .context-clickable {
cursor: pointer;
stroke: #BBBBBB;
fill: #F2F1ED;
stroke-width: 0.5px;
}
.UserCountryMap_map svg .context-clickable:hover {
fill: #E4E2D7;
}
.UserCountryMap_map svg .regionBG {
stroke-width: 6px;
stroke: #fff;
fill: none;
}
.UserCountryMap_map svg .regionBG-fill {
stroke: #555;
stroke-width: 0.2px;
fill: #F6F5F3;
}
.UserCountryMap_map svg .regionBG-3 {
stroke: #ccc;
fill: #F2F1ED;
stroke-width: 1px;
}
.UserCountryMap_map svg .countryBG {
stroke: #fff;
fill: #fff;
stroke-width: 4px;
}
.UserCountryMap_map svg .regions {
stroke-width: 1px;
}
.UserCountryMap_map svg .regions2 {
stroke-width: 1px;
stroke: #aaa;
fill: #fff;
}
.UserCountryMap_map svg .countryLabelBg {
font-weight: bold;
font-size: 10px;
font-family: Arial, Verdana, Helvetica, sans-serif;
fill: #F6F5F3;
stroke: #F6F5F3;
stroke-width: 3px;
stroke-linejoin: round;
stroke-linecap: round;
}
.UserCountryMap_map svg .countryLabel {
font-weight: bold;
font-size: 10px;
font-family: Arial, Verdana, Helvetica, sans-serif;
fill: #808888;
}
|