mirror of
https://github.com/cliffe/BreakEscape.git
synced 2026-02-20 13:50:46 +00:00
- Updated CSS for the caption area to span the full width of the screen, enhancing visual consistency. - Introduced a new inner container for caption content to maintain a maximum width, improving layout structure. - Added parallax animation functionality in PersonChatPortraits for a more dynamic visual experience during conversations. - Implemented automatic parallax animation reset when the speaker changes, ensuring smooth transitions between dialogues.
356 lines
7.4 KiB
CSS
356 lines
7.4 KiB
CSS
/**
|
|
* Person-Chat Minigame Styling
|
|
*
|
|
* Pixel-art aesthetic with:
|
|
* - 2px borders (matching 32px tile scale)
|
|
* - Sharp corners (no border-radius)
|
|
* - Portrait canvas filling background
|
|
* - Dialogue as caption subtitle at bottom
|
|
* - Choices displayed below dialogue
|
|
*/
|
|
|
|
/* Root container */
|
|
.person-chat-root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 100%;
|
|
padding: 0;
|
|
background-color: #000;
|
|
color: #fff;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Main content area - portrait fills background */
|
|
.person-chat-main-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex: 1;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Portrait section - fills background, positioned absolutely */
|
|
.person-chat-portrait-section {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Hide portrait label when in background mode */
|
|
.person-chat-portrait-label {
|
|
display: none;
|
|
}
|
|
|
|
/* Portrait canvas container - fills screen */
|
|
.person-chat-portrait-canvas-container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #000;
|
|
border: none;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.person-chat-portrait-canvas-container canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain; /* Changed from cover to contain to maintain aspect ratio and match main game scaling */
|
|
border: none;
|
|
background-color: #000;
|
|
}
|
|
|
|
/* Caption area - positioned at bottom 1/3 of screen, full width background */
|
|
.person-chat-caption-area {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 33%;
|
|
background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.95));
|
|
z-index: 10;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: flex-end;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Inner container for caption content - constrained to max-width */
|
|
.person-chat-caption-content {
|
|
max-width: 1200px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
align-content: flex-end;
|
|
gap: 20px;
|
|
}
|
|
|
|
/* Talk right area - speaker name and dialogue (left side, takes more space) */
|
|
.person-chat-talk-right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
flex: 1 1 400px;
|
|
min-width: 300px;
|
|
}
|
|
|
|
/* Header row: speaker name on left, controls on right */
|
|
.person-chat-header-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 20px;
|
|
width: 100%;
|
|
padding-bottom: 8px;
|
|
border-bottom: 2px solid #333;
|
|
}
|
|
|
|
/* Speaker name */
|
|
.person-chat-speaker-name {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
min-height: 20px;
|
|
flex: 0 0 auto;
|
|
font-family: 'Press Start 2P', monospace;
|
|
}
|
|
|
|
.person-chat-speaker-name.npc-speaker {
|
|
color: #4a9eff;
|
|
}
|
|
|
|
.person-chat-speaker-name.player-speaker {
|
|
color: #ff9a4a;
|
|
}
|
|
|
|
/* Dialogue text box */
|
|
.person-chat-dialogue-box {
|
|
background-color: transparent;
|
|
border: none;
|
|
padding: 0;
|
|
min-height: auto;
|
|
max-height: none;
|
|
overflow: visible;
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.person-chat-dialogue-text {
|
|
font-size: 30px;
|
|
line-height: 1.5;
|
|
color: #fff;
|
|
margin: 0;
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
|
|
}
|
|
|
|
/* Choices and continue button area (right side, fixed width) */
|
|
.person-chat-controls-area {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
flex: 0 1 auto;
|
|
align-items: stretch;
|
|
min-width: 180px;
|
|
}
|
|
|
|
/* Choices container - displayed in controls area */
|
|
.person-chat-choices-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
flex: 0 0 auto;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Choice buttons */
|
|
.person-chat-choice-button {
|
|
background-color: rgba(42, 42, 42, 0.9);
|
|
color: #fff;
|
|
border: 2px solid #555;
|
|
padding: 10px 15px;
|
|
font-size: 18px;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
transition: all 0.1s ease;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
min-width: 180px;
|
|
}
|
|
|
|
.person-chat-choice-button:hover {
|
|
background-color: rgba(58, 58, 58, 0.95);
|
|
border-color: #4a9eff;
|
|
color: #4a9eff;
|
|
}
|
|
|
|
.person-chat-choice-button:active {
|
|
background-color: #4a9eff;
|
|
color: #000;
|
|
border-color: #4a9eff;
|
|
}
|
|
|
|
.person-chat-choice-button:focus {
|
|
outline: none;
|
|
border-color: #4a9eff;
|
|
background-color: rgba(58, 58, 58, 0.95);
|
|
}
|
|
|
|
/* Continue button */
|
|
.person-chat-continue-button {
|
|
background-color: rgba(42, 74, 42, 0.9);
|
|
color: #4eff4a;
|
|
border: 2px solid #555;
|
|
padding: 12px 15px;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
transition: all 0.1s ease;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.person-chat-continue-button:hover {
|
|
background-color: rgba(58, 90, 58, 0.95);
|
|
border-color: #4eff4a;
|
|
color: #4eff4a;
|
|
}
|
|
|
|
.person-chat-continue-button:active {
|
|
background-color: #4eff4a;
|
|
color: #000;
|
|
border-color: #4eff4a;
|
|
}
|
|
|
|
.person-chat-continue-button:focus {
|
|
outline: none;
|
|
border-color: #4eff4a;
|
|
background-color: rgba(58, 90, 58, 0.95);
|
|
}
|
|
|
|
.person-chat-continue-button:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Portrait styles (for canvases) */
|
|
.person-chat-portrait {
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
image-rendering: crisp-edges;
|
|
display: block;
|
|
}
|
|
|
|
/* NPC-specific styling */
|
|
.person-chat-portrait-section.speaker-npc .person-chat-portrait-canvas-container {
|
|
border-color: #4a9eff;
|
|
}
|
|
|
|
/* Player-specific styling */
|
|
.person-chat-portrait-section.speaker-player .person-chat-portrait-canvas-container {
|
|
border-color: #ff9a4a;
|
|
}
|
|
|
|
/* Error messages */
|
|
.minigame-error {
|
|
background-color: #4a0000;
|
|
border: 2px solid #ff0000;
|
|
color: #ff6b6b;
|
|
padding: 10px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
/* Scrollbar styling for dialogue box - not needed with transparent background */
|
|
.person-chat-dialogue-box::-webkit-scrollbar {
|
|
width: 0;
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
/* @media (max-width: 1200px) {
|
|
.person-chat-caption-area {
|
|
height: 40%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.person-chat-caption-area {
|
|
height: 45%;
|
|
padding: 10px;
|
|
gap: 10px;
|
|
}
|
|
|
|
.person-chat-choice-button {
|
|
font-size: 18px;
|
|
padding: 8px 12px;
|
|
}
|
|
} */
|
|
|
|
/* Animations */
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.person-chat-dialogue-text {
|
|
animation: fadeIn 0.3s ease-in;
|
|
}
|
|
|
|
.person-chat-choice-button {
|
|
animation: fadeIn 0.2s ease-in;
|
|
}
|
|
|
|
/* Print styles (if needed for saving conversation) */
|
|
@media print {
|
|
.person-chat-root {
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
|
|
.person-chat-dialogue-box,
|
|
.person-chat-portraits-container {
|
|
border-color: #000;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.person-chat-dialogue-text,
|
|
.person-chat-speaker-name {
|
|
color: #000;
|
|
}
|
|
|
|
.person-chat-choice-button {
|
|
display: none;
|
|
}
|
|
}
|