Merge branch 'master' of https://github.com/Azgaar/Fantasy-Map-Generator into urquhart-routes

This commit is contained in:
Azgaar 2024-07-29 15:40:28 +02:00
commit c4370774e4
27 changed files with 423 additions and 294 deletions

View file

@ -436,6 +436,14 @@ button.options:hover {
margin: 0.8em 0 0 0;
}
#options .tip {
color: #444;
font-size: 0.9em;
font-family: sans-serif;
font-style: italic;
margin-left: 0.5em;
}
#aboutContent {
text-align: justify;
}
@ -733,7 +741,7 @@ input[type="color"]::-webkit-color-swatch-wrapper {
background-color: var(--header-active);
}
#toolsContent div {
#toolsContent > .grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
margin: 0.2em 0;
@ -757,7 +765,7 @@ input[type="color"]::-webkit-color-swatch-wrapper {
#viewMode > button {
padding: 0.35em;
margin: 0.2em 0.3em 0.6em 0.3em;
margin: 0.3em 0.3em 0.6em 0.3em;
float: left;
width: 30.7%;
}
@ -2188,7 +2196,7 @@ svg.button {
#worldControls input[type="number"] {
border: 1px solid #e5e5e5;
padding: 0px;
width: 3.2em;
width: 4em;
}
#worldControls i.icon-lock-open,
@ -2247,10 +2255,6 @@ svg.button {
fill: blue;
}
#globeOutline {
fill: url(#temperatureGradient);
}
#globeArea {
fill: white;
fill-opacity: 0.3;
@ -2261,6 +2265,11 @@ svg.button {
stroke-width: 0.2;
}
#globePrimeMeridian {
stroke: blue;
stroke-width: 1.4;
}
#globeEquator {
stroke: red;
stroke-width: 1.4;
@ -2382,6 +2391,29 @@ svg.button {
background: #ccc;
}
.separator {
display: flex;
align-items: center;
text-align: center;
font-style: italic;
font-weight: bold;
color: #222;
margin: 0.8em 0 0 0;
}
.separator::before,
.separator::after {
content: "";
flex: 1;
border-bottom: 1px solid #333;
}
.separator:not(:empty)::before {
margin-right: 0.25em;
}
.separator:not(:empty)::after {
margin-left: 0.25em;
}
@media print {
div,
canvas {