162 lines
4.3 KiB
CSS
162 lines
4.3 KiB
CSS
/* Basic styling for the board */
|
|
.centered h1 {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
min-height: 100vh;
|
|
/* background: linear-gradient(135deg, #ff7e5f, #feb47b); */ /* Modern gradient background */
|
|
}
|
|
|
|
.bingo-board {
|
|
display: grid;
|
|
gap: 4px; /* Adjust gap as needed */
|
|
}
|
|
.centered {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
#bean {
|
|
width: 60px;
|
|
height: 60px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
#bean:hover {
|
|
transform: scale(1.1); /* Slightly enlarge the bean on hover */
|
|
}
|
|
.bingo-cell {
|
|
border-width: 1px; /* Keep border width */
|
|
border-style: solid; /* Keep border style */
|
|
/* border-color will be set by JS */
|
|
/* background-color or background-image will be set by JS */
|
|
text-align: center;
|
|
padding: 8px;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
hyphens: auto;
|
|
/* Add transition for background color changes */
|
|
transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out, filter 0.15s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 8px;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
/* Add darken filter on hover */
|
|
.bingo-cell:hover {
|
|
filter: brightness(85%);
|
|
}
|
|
|
|
/* Style for when a cell is actively being clicked */
|
|
.bingo-cell:active {
|
|
transform: scale(0.95); /* Scale down slightly */
|
|
box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2); /* Add subtle inset shadow */
|
|
background-color: #e0e0d1; /* Slightly darker beige */
|
|
}
|
|
|
|
/* Style for permanently marked cells */
|
|
.bingo-cell.marked {
|
|
/* background-color: #fde047; */ /* REMOVED - Handled by JS */
|
|
/* Optional: Add other persistent styles like a stronger border */
|
|
/* border-color: #ca8a04; */ /* Tailwind yellow-600 */
|
|
/* Styles like background-image, background-size, background-position, background-repeat, and opacity will be added by JS */
|
|
}
|
|
|
|
/* Style for when a MARKED cell is actively being clicked */
|
|
.bingo-cell.marked:active {
|
|
transform: scale(0.95); /* Keep the same transform */
|
|
box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2); /* Keep the same shadow */
|
|
background-color: #facc15; /* Slightly darker yellow (Tailwind yellow-400) */
|
|
}
|
|
|
|
.config-pane {
|
|
transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
|
|
max-height: 500px; /* Adjust as needed */
|
|
overflow: hidden;
|
|
opacity: 1;
|
|
}
|
|
.config-pane.minimized {
|
|
max-height: 0;
|
|
opacity: 0;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
border-width: 0;
|
|
}
|
|
|
|
/* Configuration Pane Styling */
|
|
.config-pane-closed {
|
|
transform: translateX(100%); /* Hide off-screen to the right */
|
|
}
|
|
|
|
.config-pane-open {
|
|
transform: translateX(0); /* Slide in from the right */
|
|
}
|
|
|
|
/* Ensure transition is applied (already added in HTML via Tailwind classes) */
|
|
/* #config-pane {
|
|
transition: transform 0.3s ease-in-out;
|
|
} */
|
|
|
|
/* Basic styling for the board */
|
|
#bingo-board-container {
|
|
/* Background color/image/opacity set by JS */
|
|
}
|
|
|
|
/* Styling for config pane sections */
|
|
.config-section {
|
|
border-bottom: 1px solid #e5e7eb; /* Tailwind gray-200 */
|
|
padding-bottom: 0.75rem; /* pb-3 */
|
|
margin-bottom: 0.75rem; /* mb-3 */
|
|
}
|
|
|
|
.config-section:last-of-type {
|
|
border-bottom: none;
|
|
padding-bottom: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.config-summary {
|
|
cursor: pointer;
|
|
font-weight: 600; /* semibold */
|
|
color: #1f2937; /* gray-800 */
|
|
padding: 0.5rem 0; /* py-2 */
|
|
list-style: none; /* Remove default marker */
|
|
position: relative;
|
|
padding-left: 1.5rem; /* Make space for custom marker */
|
|
}
|
|
|
|
/* Custom arrow marker */
|
|
.config-summary::before {
|
|
content: '';
|
|
border-width: 0 2px 2px 0;
|
|
border-style: solid;
|
|
border-color: #6b7280; /* gray-500 */
|
|
display: inline-block;
|
|
padding: 3px;
|
|
transform: rotate(45deg);
|
|
position: absolute;
|
|
left: 0.25rem;
|
|
top: 0.85rem; /* Adjust vertical alignment */
|
|
transition: transform 0.2s ease-in-out;
|
|
}
|
|
|
|
/* Rotate arrow when section is open */
|
|
details[open] > .config-summary::before {
|
|
transform: rotate(-135deg);
|
|
top: 1rem; /* Adjust vertical alignment for open state */
|
|
}
|
|
|
|
/* Hide default <details> marker */
|
|
.config-summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
.config-content {
|
|
padding-left: 1.5rem; /* Indent content */
|
|
}
|