new darkmode, disbales/hidden min games

This commit is contained in:
samantha42
2026-05-23 11:52:02 +02:00
parent 4cb5ea8724
commit 0f0c72e705
16 changed files with 771 additions and 1347 deletions
+57
View File
@@ -0,0 +1,57 @@
.play {
padding: 2rem 0;
}
.play .section-head h2 {
font-family: var(--ff-mono);
font-size: 1rem;
font-weight: 400;
letter-spacing: 0.08em;
color: var(--muted);
margin-bottom: 1.5rem;
}
.play .story-text {
font-family: var(--ff-mono);
font-size: 0.85rem;
line-height: 1.9;
color: var(--fg);
max-width: 560px;
margin-bottom: 2rem;
white-space: pre-wrap;
border: 1px solid rgb(167, 205, 250);
border-radius: 10px;
padding: 1rem 1.25rem;
}
.play .choices {
display: flex;
flex-direction: column;
gap: 0.6rem;
max-width: 560px;
}
.play .choices a,
.play .choices button {
font-family: var(--ff-mono);
font-size: 0.8rem;
color: var(--muted);
background: none;
border: none;
border-left: 1px solid var(--muted);
padding: 0.3rem 0.75rem;
cursor: pointer;
text-align: left;
text-decoration: none;
transition: color 0.15s, border-color 0.15s;
}
.play .choices a:hover,
.play .choices button:hover {
color: var(--fg);
border-color: var(--fg);
}
.idx {
color: blueviolet;
padding: 10px;
}