Redesign 3D gallery as single hall per artist with exit navigation.
Restore React client source, add hall-to-hall navigation via painting influences grouped by movement, and update documentation. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
co-authored by
Cursor
parent
44d3d4359a
commit
08f99d7a29
@@ -0,0 +1,314 @@
|
||||
.painting-detail {
|
||||
min-height: 100vh;
|
||||
background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
|
||||
color: #e8d5b5;
|
||||
}
|
||||
|
||||
.painting-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 16px 24px;
|
||||
border-bottom: 2px solid #c9a96e;
|
||||
background: rgba(26, 26, 46, 0.95);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 50;
|
||||
}
|
||||
|
||||
.painting-title-block h1 {
|
||||
font-family: 'Georgia', serif;
|
||||
font-size: 24px;
|
||||
margin: 0;
|
||||
color: #e8d5b5;
|
||||
}
|
||||
|
||||
.painting-meta {
|
||||
margin: 4px 0 0;
|
||||
color: #c9a96e;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.back-btn,
|
||||
.bio-btn {
|
||||
padding: 8px 16px;
|
||||
border: 1px solid #c9a96e;
|
||||
background: rgba(201, 169, 110, 0.15);
|
||||
color: #e8d5b5;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-family: 'Georgia', serif;
|
||||
font-size: 14px;
|
||||
white-space: nowrap;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.back-btn:hover,
|
||||
.bio-btn:hover {
|
||||
background: rgba(201, 169, 110, 0.35);
|
||||
}
|
||||
|
||||
.painting-layout {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(300px, 360px) 1fr minmax(300px, 360px);
|
||||
gap: 0;
|
||||
min-height: calc(100vh - 80px);
|
||||
}
|
||||
|
||||
.influence-panel {
|
||||
padding: 20px 16px;
|
||||
overflow-y: auto;
|
||||
max-height: calc(100vh - 80px);
|
||||
}
|
||||
|
||||
.influence-left,
|
||||
.influence-right {
|
||||
min-width: 300px;
|
||||
max-width: 360px;
|
||||
}
|
||||
|
||||
.influence-left {
|
||||
border-right: 1px solid rgba(201, 169, 110, 0.2);
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.influence-right {
|
||||
border-left: 1px solid rgba(201, 169, 110, 0.2);
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.influence-panel h3 {
|
||||
font-family: 'Georgia', serif;
|
||||
color: #c9a96e;
|
||||
font-size: 16px;
|
||||
margin: 0 0 16px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid rgba(201, 169, 110, 0.3);
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.no-influences {
|
||||
font-size: 13px;
|
||||
color: rgba(232, 213, 181, 0.5);
|
||||
text-align: center;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.influence-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.influence-card-expanded {
|
||||
background: rgba(201, 169, 110, 0.08);
|
||||
border: 1px solid rgba(201, 169, 110, 0.2);
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.influence-image-btn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
border: none;
|
||||
background: #2a1f15;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.influence-image-btn img {
|
||||
width: 100%;
|
||||
height: 140px;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.influence-image-btn:hover img {
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
.influence-body {
|
||||
padding: 12px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.influence-title-btn {
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.influence-title-btn:hover strong {
|
||||
color: #c9a96e;
|
||||
}
|
||||
|
||||
.influence-title-btn strong {
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
color: #e8d5b5;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
.influence-title-btn span {
|
||||
font-size: 11px;
|
||||
color: #c9a96e;
|
||||
}
|
||||
|
||||
.influence-aspects {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.aspect-tag {
|
||||
font-size: 10px;
|
||||
padding: 2px 8px;
|
||||
border-radius: 10px;
|
||||
background: rgba(201, 169, 110, 0.15);
|
||||
border: 1px solid rgba(201, 169, 110, 0.3);
|
||||
color: #c9a96e;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.influence-notes {
|
||||
font-size: 12px;
|
||||
color: rgba(232, 213, 181, 0.8);
|
||||
margin: 0;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.influence-quote {
|
||||
margin: 0;
|
||||
padding: 10px 12px;
|
||||
border-left: 3px solid #c9a96e;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
border-radius: 0 4px 4px 0;
|
||||
}
|
||||
|
||||
.influence-quote p {
|
||||
margin: 0 0 6px;
|
||||
font-family: 'Georgia', serif;
|
||||
font-size: 12px;
|
||||
font-style: italic;
|
||||
color: rgba(232, 213, 181, 0.9);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.influence-quote footer {
|
||||
font-size: 11px;
|
||||
color: rgba(201, 169, 110, 0.7);
|
||||
}
|
||||
|
||||
.influence-quote cite {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.influence-source-link {
|
||||
font-size: 11px;
|
||||
color: #87b5d8;
|
||||
text-decoration: none;
|
||||
border-bottom: 1px dotted rgba(135, 181, 216, 0.4);
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
.influence-source-link:hover {
|
||||
color: #a8d4f5;
|
||||
border-bottom-color: #a8d4f5;
|
||||
}
|
||||
|
||||
.influence-card {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
padding: 8px;
|
||||
background: rgba(201, 169, 110, 0.08);
|
||||
border: 1px solid rgba(201, 169, 110, 0.2);
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
text-align: left;
|
||||
color: inherit;
|
||||
transition: background 0.2s, border-color 0.2s;
|
||||
}
|
||||
|
||||
.influence-card:hover {
|
||||
background: rgba(201, 169, 110, 0.2);
|
||||
border-color: #c9a96e;
|
||||
}
|
||||
|
||||
.influence-card img {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
object-fit: cover;
|
||||
border-radius: 4px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.influence-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.influence-info strong {
|
||||
font-size: 13px;
|
||||
color: #e8d5b5;
|
||||
}
|
||||
|
||||
.influence-info span {
|
||||
font-size: 11px;
|
||||
color: #c9a96e;
|
||||
}
|
||||
|
||||
.painting-center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.painting-frame-large {
|
||||
max-width: 700px;
|
||||
width: 100%;
|
||||
border: 8px solid #5c3d2e;
|
||||
border-image: linear-gradient(135deg, #8B6914, #c9a96e, #8B6914) 1;
|
||||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 0 2px #c9a96e;
|
||||
background: #2a1f15;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.painting-frame-large img {
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.painting-description {
|
||||
max-width: 700px;
|
||||
margin-top: 20px;
|
||||
padding: 16px;
|
||||
background: rgba(201, 169, 110, 0.08);
|
||||
border-radius: 6px;
|
||||
border: 1px solid rgba(201, 169, 110, 0.15);
|
||||
}
|
||||
|
||||
.painting-description p {
|
||||
margin: 0;
|
||||
font-family: 'Georgia', serif;
|
||||
font-size: 14px;
|
||||
line-height: 1.7;
|
||||
color: rgba(232, 213, 181, 0.85);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.painting-layout {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.influence-panel {
|
||||
max-height: none;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user