mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-18 02:01:22 +01:00
feat(styles): add anchor styling for burgs in multiple themes
This commit is contained in:
parent
bd05453e63
commit
4a08f617bb
9 changed files with 1607 additions and 1 deletions
|
|
@ -327,6 +327,8 @@ function addStylePreset() {
|
|||
const burgLabelsAttributes = [
|
||||
"opacity",
|
||||
"fill",
|
||||
"stroke",
|
||||
"stroke-width",
|
||||
"style",
|
||||
"letter-spacing",
|
||||
"data-size",
|
||||
|
|
@ -345,11 +347,14 @@ function addStylePreset() {
|
|||
"stroke-width",
|
||||
"stroke-dasharray",
|
||||
"stroke-linecap",
|
||||
"stroke-linejoin"
|
||||
"stroke-linejoin",
|
||||
"fitler"
|
||||
];
|
||||
const anchorsAttributes = ["opacity", "fill", "font-size", "stroke", "stroke-width", "filter"];
|
||||
options.burgs.groups.forEach(({name}) => {
|
||||
attributes[`#burgLabels > g#${name}`] = burgLabelsAttributes;
|
||||
attributes[`#burgIcons > g#${name}`] = burgIconsAttributes;
|
||||
attributes[`#anchors > g#${name}`] = anchorsAttributes;
|
||||
});
|
||||
|
||||
for (const selector in attributes) {
|
||||
|
|
|
|||
|
|
@ -526,6 +526,13 @@
|
|||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"font-size": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#labels > #states": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
|
|
|
|||
|
|
@ -200,6 +200,151 @@
|
|||
"filter": null,
|
||||
"mask": null
|
||||
},
|
||||
"#burgLabels > g#capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: #ffffff 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 8,
|
||||
"font-size": 8,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#capital": {
|
||||
"data-icon": "#icon-square",
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 1,
|
||||
"font-size": 2.5,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"font-size": 2.5,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 1.5
|
||||
},
|
||||
"#burgLabels > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: #ffffff 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 6,
|
||||
"font-size": 6,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#city": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 1,
|
||||
"font-size": 2,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"font-size": 2,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 1.5
|
||||
},
|
||||
"#burgLabels > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: #ffffff 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#town": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 1,
|
||||
"font-size": 1.5,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 8,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"font-size": 1.5,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 1.5
|
||||
},
|
||||
"#burgLabels > g#village": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: #ffffff 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#village": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 1,
|
||||
"font-size": 1,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 6,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#village": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"font-size": 1,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 1.5
|
||||
},
|
||||
"#burgLabels > g#hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: #ffffff 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#hamlet": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 1,
|
||||
"font-size": 0.7,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 6,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#ffffff",
|
||||
"stroke-width": 1.5
|
||||
},
|
||||
"#trails": {
|
||||
"opacity": 1,
|
||||
"stroke": "#9f5122",
|
||||
|
|
@ -328,6 +473,32 @@
|
|||
"data-y": 93,
|
||||
"data-columns": 8
|
||||
},
|
||||
"#burgLabels > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 7,
|
||||
"font-size": 7,
|
||||
"font-family": "Amarante"
|
||||
},
|
||||
"#burgIcons > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 1.5,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0.3,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "round"
|
||||
},
|
||||
"#anchors > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 3,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.4
|
||||
},
|
||||
"#burgLabels > #city": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
|
|
@ -354,6 +525,136 @@
|
|||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Amarante"
|
||||
},
|
||||
"#burgIcons > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.7,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0.24,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "round"
|
||||
},
|
||||
"#anchors > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Amarante"
|
||||
},
|
||||
"#burgIcons > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.7,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0.24,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "round"
|
||||
},
|
||||
"#anchors > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Amarante"
|
||||
},
|
||||
"#burgIcons > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.7,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0.24,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "round"
|
||||
},
|
||||
"#anchors > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Amarante"
|
||||
},
|
||||
"#burgIcons > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.7,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0.24,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "round"
|
||||
},
|
||||
"#anchors > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #town": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Amarante"
|
||||
},
|
||||
"#burgIcons > #town": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.8,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0.24,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "round"
|
||||
},
|
||||
"#anchors > #town": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.6,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #town": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
|
|
|
|||
|
|
@ -328,6 +328,32 @@
|
|||
"data-y": 93,
|
||||
"data-columns": 8
|
||||
},
|
||||
"#burgLabels > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 10,
|
||||
"font-size": 10,
|
||||
"font-family": "Orbitron"
|
||||
},
|
||||
"#burgIcons > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 2.5,
|
||||
"stroke": "#444444",
|
||||
"stroke-width": 0.3,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #city": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
|
|
@ -354,6 +380,162 @@
|
|||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1
|
||||
},
|
||||
"#burgLabels > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Orbitron"
|
||||
},
|
||||
"#burgIcons > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 1,
|
||||
"stroke": "#444444",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1
|
||||
},
|
||||
"#burgLabels > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Orbitron"
|
||||
},
|
||||
"#burgIcons > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 1,
|
||||
"stroke": "#444444",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1
|
||||
},
|
||||
"#burgLabels > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Orbitron"
|
||||
},
|
||||
"#burgIcons > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 1,
|
||||
"stroke": "#444444",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1
|
||||
},
|
||||
"#burgLabels > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Orbitron"
|
||||
},
|
||||
"#burgIcons > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 1,
|
||||
"stroke": "#444444",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1
|
||||
},
|
||||
"#burgLabels > #village": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Orbitron"
|
||||
},
|
||||
"#burgIcons > #village": {
|
||||
"opacity": 0.95,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.8,
|
||||
"stroke": "#444444",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #village": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.6,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1
|
||||
},
|
||||
"#burgLabels > #hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Orbitron"
|
||||
},
|
||||
"#burgIcons > #hamlet": {
|
||||
"opacity": 0.95,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.6,
|
||||
"stroke": "#444444",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1
|
||||
},
|
||||
"#burgLabels > #town": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
|
|
|
|||
|
|
@ -317,6 +317,31 @@
|
|||
"data-y": 93,
|
||||
"data-columns": 8
|
||||
},
|
||||
"#burgLabels > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 9,
|
||||
"font-size": 9,
|
||||
"font-family": "Lugrasimo"
|
||||
},
|
||||
"#burgIcons > #capital": {
|
||||
"opacity": 0.7,
|
||||
"fill": "#000000",
|
||||
"size": 2.25,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0,
|
||||
"stroke-dasharray": 0,
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 4.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.4
|
||||
},
|
||||
"#burgLabels > #city": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
|
|
@ -342,6 +367,156 @@
|
|||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Lugrasimo"
|
||||
},
|
||||
"#burgIcons > #fort": {
|
||||
"opacity": 0.7,
|
||||
"fill": "#000000",
|
||||
"size": 1,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0,
|
||||
"stroke-dasharray": 0,
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Lugrasimo"
|
||||
},
|
||||
"#burgIcons > #monastery": {
|
||||
"opacity": 0.7,
|
||||
"fill": "#000000",
|
||||
"size": 1,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0,
|
||||
"stroke-dasharray": 0,
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Lugrasimo"
|
||||
},
|
||||
"#burgIcons > #caravanserai": {
|
||||
"opacity": 0.7,
|
||||
"fill": "#000000",
|
||||
"size": 1,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0,
|
||||
"stroke-dasharray": 0,
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Lugrasimo"
|
||||
},
|
||||
"#burgIcons > #trading_post": {
|
||||
"opacity": 0.7,
|
||||
"fill": "#000000",
|
||||
"size": 1,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0,
|
||||
"stroke-dasharray": 0,
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #village": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Lugrasimo"
|
||||
},
|
||||
"#burgIcons > #village": {
|
||||
"opacity": 0.7,
|
||||
"fill": "#000000",
|
||||
"size": 0.75,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0,
|
||||
"stroke-dasharray": 0,
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #village": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Lugrasimo"
|
||||
},
|
||||
"#burgIcons > #hamlet": {
|
||||
"opacity": 0.7,
|
||||
"fill": "#000000",
|
||||
"size": 0.5,
|
||||
"stroke": "#000000",
|
||||
"stroke-width": 0,
|
||||
"stroke-dasharray": 0,
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #town": {
|
||||
"opacity": 1,
|
||||
"fill": "#000000",
|
||||
|
|
|
|||
|
|
@ -201,6 +201,151 @@
|
|||
"filter": null,
|
||||
"mask": null
|
||||
},
|
||||
"#burgLabels > g#capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"style": "text-shadow: #4a4a4a 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 7,
|
||||
"font-size": 7,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#capital": {
|
||||
"data-icon": "#icon-square",
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"fill-opacity": 0.9,
|
||||
"font-size": 2,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"font-size": 2,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"style": "text-shadow: #4a4a4a 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 5,
|
||||
"font-size": 5,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#city": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"fill-opacity": 0.9,
|
||||
"font-size": 1.5,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 8,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#city": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"font-size": 1.5,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"style": "text-shadow: #4a4a4a 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#town": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"fill-opacity": 0.9,
|
||||
"font-size": 1,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#town": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"font-size": 1,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#village": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"style": "text-shadow: #4a4a4a 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#village": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"fill-opacity": 0.9,
|
||||
"font-size": 0.7,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#village": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"style": "text-shadow: #4a4a4a 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#hamlet": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"fill-opacity": 0.9,
|
||||
"font-size": 0.5,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#2a2a33",
|
||||
"font-size": 0.5,
|
||||
"stroke": "#4a4a4a",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#trails": {
|
||||
"opacity": 1,
|
||||
"stroke": "#844017",
|
||||
|
|
|
|||
|
|
@ -200,6 +200,267 @@
|
|||
"filter": null,
|
||||
"mask": null
|
||||
},
|
||||
"#burgLabels > g#capital": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: #f9f2ea 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 8,
|
||||
"font-size": 8,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#capital": {
|
||||
"data-icon": "#icon-square",
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"fill-opacity": 0.8,
|
||||
"font-size": 2,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#capital": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"font-size": 2,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 1.4
|
||||
},
|
||||
"#burgLabels > g#city": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: #f9f2ea 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 6,
|
||||
"font-size": 6,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#city": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"fill-opacity": 0.8,
|
||||
"font-size": 1.5,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#city": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"font-size": 1.5,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#fort": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: #f9f2ea 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#fort": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"fill-opacity": 0.8,
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#fort": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#monastery": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: #f9f2ea 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#monastery": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"fill-opacity": 0.8,
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#monastery": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#caravanserai": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: #f9f2ea 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#caravanserai": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"fill-opacity": 0.8,
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#caravanserai": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#trading_post": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: #f9f2ea 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#trading_post": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"fill-opacity": 0.8,
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#trading_post": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#village": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: #f9f2ea 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#village": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"fill-opacity": 0.8,
|
||||
"font-size": 0.7,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#village": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#hamlet": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: #f9f2ea 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#hamlet": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"fill-opacity": 0.8,
|
||||
"font-size": 0.5,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#hamlet": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"font-size": 0.5,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#fort": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: #f9f2ea 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#fort": {
|
||||
"data-icon": "#icon-castle",
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"fill-opacity": 0.8,
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#fort": {
|
||||
"opacity": 0.9,
|
||||
"fill": "#3e3e4b",
|
||||
"font-size": 1,
|
||||
"stroke": "#f9f2ea",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#trails": {
|
||||
"opacity": 0.8,
|
||||
"stroke": "#95481a",
|
||||
|
|
|
|||
348
styles/pale.json
348
styles/pale.json
|
|
@ -200,6 +200,354 @@
|
|||
"filter": null,
|
||||
"mask": null
|
||||
},
|
||||
"#burgLabels > g#capital": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 7,
|
||||
"font-size": 7,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#capital": {
|
||||
"data-icon": "#icon-square",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 2,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 10,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#capital": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 2,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#city": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 5,
|
||||
"font-size": 5,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#city": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1.5,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 8,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#city": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 1.5,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#town": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#town": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#town": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#capital": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 8,
|
||||
"font-size": 8,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#capital": {
|
||||
"data-icon": "#icon-square",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 2,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#capital": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 2,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.4
|
||||
},
|
||||
"#burgLabels > g#city": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 6,
|
||||
"font-size": 6,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#city": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1.5,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#city": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 1.5,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#fort": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#fort": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#fort": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#monastery": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#monastery": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#monastery": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#caravanserai": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#caravanserai": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#caravanserai": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#trading_post": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 4,
|
||||
"font-size": 4,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#trading_post": {
|
||||
"data-icon": "#icon-triangle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#trading_post": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 1,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#village": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#village": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.7,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#village": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 0.7,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#hamlet": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#hamlet": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 0.5,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#hamlet": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 0.5,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > g#town": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"style": "text-shadow: #f4f2f0 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 5,
|
||||
"font-size": 5,
|
||||
"font-family": "Almendra SC",
|
||||
"data-dy": -0.4
|
||||
},
|
||||
"#burgIcons > g#town": {
|
||||
"data-icon": "#icon-circle",
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"fill-opacity": 0.7,
|
||||
"font-size": 1.2,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 12,
|
||||
"stroke-dasharray": null,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "round"
|
||||
},
|
||||
"#anchors > g#town": {
|
||||
"opacity": 0.8,
|
||||
"fill": "#4a4a4a",
|
||||
"font-size": 1.2,
|
||||
"stroke": "#f4f2f0",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#trails": {
|
||||
"opacity": 0.9,
|
||||
"stroke": "#d06324",
|
||||
|
|
|
|||
|
|
@ -328,6 +328,32 @@
|
|||
"data-y": 93,
|
||||
"data-columns": 8
|
||||
},
|
||||
"#burgLabels > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#043449",
|
||||
"style": "text-shadow: white 0px 0px 2px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 7,
|
||||
"font-size": 7,
|
||||
"font-family": "Comfortaa"
|
||||
},
|
||||
"#burgIcons > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 1.5,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 0.3,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #capital": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 3,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.4
|
||||
},
|
||||
"#burgLabels > #city": {
|
||||
"opacity": 1,
|
||||
"fill": "#043449",
|
||||
|
|
@ -354,6 +380,162 @@
|
|||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Comfortaa"
|
||||
},
|
||||
"#burgIcons > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #fort": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Comfortaa"
|
||||
},
|
||||
"#burgIcons > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #monastery": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Comfortaa"
|
||||
},
|
||||
"#burgIcons > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #caravanserai": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 3,
|
||||
"font-size": 3,
|
||||
"font-family": "Comfortaa"
|
||||
},
|
||||
"#burgIcons > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.7,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 0.2,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #trading_post": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #village": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2.5,
|
||||
"font-size": 2.5,
|
||||
"font-family": "Comfortaa"
|
||||
},
|
||||
"#burgIcons > #village": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.6,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 0.15,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #village": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 1.2,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
"style": "text-shadow: white 0px 0px 4px",
|
||||
"letter-spacing": 0,
|
||||
"data-size": 2,
|
||||
"font-size": 2,
|
||||
"font-family": "Comfortaa"
|
||||
},
|
||||
"#burgIcons > #hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"fill-opacity": 0.7,
|
||||
"size": 0.4,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 0.1,
|
||||
"stroke-dasharray": "",
|
||||
"stroke-linecap": "butt"
|
||||
},
|
||||
"#anchors > #hamlet": {
|
||||
"opacity": 1,
|
||||
"fill": "#ffffff",
|
||||
"size": 0.8,
|
||||
"stroke": "#3e3e4b",
|
||||
"stroke-width": 1.2
|
||||
},
|
||||
"#burgLabels > #town": {
|
||||
"opacity": 1,
|
||||
"fill": "#3e3e4b",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue