57 lines
1.0 KiB
CSS
57 lines
1.0 KiB
CSS
.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;
|
|
} |