This commit is contained in:
6d486f49
2026-06-11 17:34:32 -04:00
parent d6eabf4990
commit 11f45fcf74
11 changed files with 671 additions and 7 deletions
+125
View File
@@ -196,6 +196,10 @@ code {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-file-text' viewBox='0 0 16 16'%3E%3Cpath d='M5 4a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1H5zm-.5 2.5A.5.5 0 0 1 5 6h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zM5 8a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1H5zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1H5z'/%3E%3Cpath d='M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1z'/%3E%3C/svg%3E");
}
.bi-graph-up-nav-menu {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-graph-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 0h1v15h15v1H0V0Zm14.817 3.113a.5.5 0 0 1 .07.704l-4.5 5.5a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61 4.15-5.073a.5.5 0 0 1 .704-.07Z'/%3E%3C/svg%3E");
}
.hero-section {
background: linear-gradient(135deg, var(--bg-sidebar) 0%, var(--bg-dark) 100%);
border: 1px solid var(--border-color);
@@ -676,3 +680,124 @@ table.frontmatter td.fm-key {
padding: 3rem !important;
text-align: center !important;
}
/* Simulation Page */
.simulation-layout {
max-width: 900px;
margin: 0 auto;
}
.sim-controls {
background: var(--bg-sidebar);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 0.75rem 1.25rem;
}
.turn-label {
font-size: 1.1rem;
color: var(--text-main);
min-width: 100px;
text-align: center;
}
.btn-outline-light {
color: var(--text-main);
border-color: var(--border-color);
}
.btn-outline-light:hover {
background: var(--primary);
border-color: var(--primary);
color: #fff;
}
.btn-outline-light:disabled {
opacity: 0.3;
}
.event-badge {
font-size: 0.85rem;
padding: 0.35em 0.75em;
}
.sim-map-container {
border: 1px solid var(--border-color);
border-radius: 12px;
overflow: hidden;
background: #0f100d;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.sim-svg {
width: 100%;
height: auto;
display: block;
}
.sim-region {
transition: opacity 0.2s;
}
.sim-active circle:last-child {
animation: pulse-glow 1.5s ease-in-out infinite;
}
@keyframes pulse-glow {
0%, 100% { stroke-opacity: 1; }
50% { stroke-opacity: 0.4; }
}
.sim-details {
background: var(--bg-sidebar);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 1rem 1.25rem;
max-height: 180px;
}
.sim-details-scroll {
display: flex;
flex-direction: column;
gap: 0.25rem;
overflow-y: auto;
max-height: 120px;
}
.sim-detail-item {
font-size: 0.85rem;
color: var(--text-muted);
padding: 0.2rem 0;
border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sim-detail-item:last-child {
border-bottom: none;
}
.sim-totals {
font-size: 0.9rem;
color: var(--text-main);
}
.total-dot {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
margin-right: 6px;
vertical-align: middle;
}
.bg-danger {
background-color: #e76f51 !important;
}
.bg-warning {
background-color: #e9c46a !important;
color: #000 !important;
}
.bg-success {
background-color: #4caf50 !important;
}
+3 -2
View File
@@ -160,7 +160,7 @@
{
"slug": "forest-regions",
"title": "Forest Regions",
"category": "RegionType"
"category": "Region Type"
},
{
"slug": "gauzeblade",
@@ -485,7 +485,8 @@
},
{
"slug": "water-regions",
"title": "Water Regions"
"title": "Water Regions",
"category": "Region Type"
},
{
"slug": "weather",
+1 -1
View File
@@ -1,3 +1,3 @@
---
category: RegionType
category: Region Type
---
+2 -1
View File
@@ -1,3 +1,4 @@
[[Forest Regions]]
[[Water Regions]]
[[Grass Regions]]
[[Grass Regions]]
[[Mountain Regions]]
@@ -0,0 +1,3 @@
---
category: Region Type
---