more stuff

This commit is contained in:
2026-05-01 19:48:34 -05:00
parent e1d437fd49
commit 7e767541cf
18 changed files with 1292 additions and 319 deletions

View File

@@ -5,6 +5,107 @@
font-family: 'Open Sans', sans-serif;
}
/* Image Viewer Modal */
.image-viewer-modal[open] {
border: none;
border-radius: 12px;
padding: 0;
max-width: 90vw;
width: 1000px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
background-color: #fff;
overflow: hidden;
}
.image-viewer-modal::backdrop {
background-color: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(4px);
}
.image-viewer-modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 1.5rem;
background-color: #f8f9fa;
border-bottom: 1px solid #e9ecef;
font-weight: 600;
}
.image-viewer-image-stage {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 400px;
max-height: 70vh;
background-color: #000;
border-radius: 8px;
position: relative;
overflow: hidden;
}
.image-viewer-image-stage img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
display: block;
}
.image-viewer-carousel-container {
display: flex;
align-items: center;
padding: 1.5rem;
gap: 1rem;
background-color: #f1f3f5;
}
.image-viewer-nav-btn {
background-color: #fff;
border: 1px solid #dee2e6;
border-radius: 50%;
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 1.2rem;
transition: all 0.2s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
z-index: 10;
}
.image-viewer-nav-btn:hover {
background-color: #007bff;
color: white;
transform: scale(1.1);
}
.image-viewer-nav-btn:active {
transform: scale(0.95);
}
.image-viewer-image-counter {
position: absolute;
bottom: 10px;
background: rgba(0, 0, 0, 0.6);
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.85rem;
}
.image-viewer-no-images {
width: 100%;
text-align: center;
padding: 3rem;
color: #6c757d;
font-style: italic;
}
/* Image viewer modal */
.admin-header {
text-align: center;
margin-bottom: 40px;
@@ -109,12 +210,12 @@ label {
border: 1px solid #e0e6ed;
border-radius: 12px;
padding: 20px;
transition: transform 0.2s ease;
display: flex;
flex-direction: column;
align-content: center;
position: relative;
}
.content-card:hover {
@@ -294,6 +395,17 @@ label {
animation: fadeIn 0.5s ease;
}
.close-btn {
position: absolute;
top: 5px;
right: 5px;
background: none;
border: none;
font-size: 20px;
cursor: pointer;
line-height: 1;
}
@keyframes fadeIn {
from {
opacity: 0;