game engine start

This commit is contained in:
Dan 2026-01-18 16:44:16 +00:00
parent d0c65a71ad
commit d5510eb989
10 changed files with 3074 additions and 1 deletions

View file

@ -97,3 +97,58 @@
.hidden {
display: none;
}
// Game Engine Styles
.game-title {
font-size: 1.2em;
font-weight: bold;
color: #44ff44;
text-shadow: 0 0 10px rgba(68, 255, 68, 0.5);
}
.game-scene-title {
font-weight: bold;
color: #00ffff;
border-bottom: 1px solid currentColor;
display: inline-block;
padding-bottom: 2px;
margin-bottom: 0.5em;
}
.game-options {
margin: 0.5em 0;
}
.game-option {
padding: 2px 0;
color: #888;
}
.game-option-selected {
padding: 2px 0;
color: #44ff44;
font-weight: bold;
}
.game-ascii {
color: #44ff44;
line-height: 1.1;
}
.game-ansi-art {
line-height: 1;
font-size: 12px;
margin: 0;
padding: 0;
white-space: pre;
font-family: monospace;
// Ensure spans don't add extra space
span {
display: inline;
}
}
.typewriter-line {
display: inline;
}