218 lines
4.6 KiB
CSS
218 lines
4.6 KiB
CSS
.syndicates-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.syndicates-header {
|
|
margin-bottom: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.pairings-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.pairing-card {
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
padding: 1.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
transition: transform var(--transition), box-shadow var(--transition);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.pairing-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--shadow);
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.pairing-display {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
margin-bottom: 1rem;
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.syndicate-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
flex: 1;
|
|
}
|
|
|
|
.syn-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
box-shadow: 0 0 10px currentColor;
|
|
}
|
|
|
|
.syn-name {
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.pairing-separator {
|
|
color: var(--text-muted);
|
|
font-size: 0.8rem;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.pairing-info {
|
|
border-top: 1px solid var(--border);
|
|
padding-top: 0.75rem;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.pairing-label {
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.syn-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
box-shadow: 0 0 10px currentColor;
|
|
display: inline-block; /* Ensure visibility */
|
|
}
|
|
|
|
/* Syndicate Colors */
|
|
.singularity { color: #ffffff; }
|
|
.phasetide { color: #2196f3; }
|
|
.silence { color: #9c27b0; }
|
|
.lifeblood { color: #4caf50; }
|
|
.sungrace { color: #ff9800; }
|
|
.splintergleam { color: #f44336; }
|
|
|
|
@media (max-width: 600px) {
|
|
.pairings-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.syndicates-container {
|
|
padding: 1rem;
|
|
}
|
|
}
|
|
|
|
/* ── Dialog ── */
|
|
.pairing-dialog {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 92vw;
|
|
max-width: 600px;
|
|
max-height: 85vh;
|
|
background: #1a1a1a; /* Explicit dark background */
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
|
|
z-index: 1050;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
animation: dialog-enter 0.25s ease-out;
|
|
}
|
|
|
|
@keyframes dialog-enter {
|
|
from { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
|
|
to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
|
|
}
|
|
|
|
.dialog-close {
|
|
position: absolute;
|
|
top: 0.75rem;
|
|
right: 0.75rem;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
color: var(--text-primary);
|
|
width: 2rem;
|
|
height: 2rem;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
z-index: 2;
|
|
transition: all var(--transition);
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.dialog-close:hover {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
.dialog-header {
|
|
padding: 2.5rem 1.5rem 1.5rem;
|
|
background: #252525; /* Explicit slightly lighter dark */
|
|
border-bottom: 1px solid var(--border);
|
|
text-align: center;
|
|
}
|
|
|
|
.dialog-header h2 {
|
|
margin: 1.25rem 0 0;
|
|
font-size: 1.6rem;
|
|
font-weight: 700;
|
|
color: #ffffff; /* Explicit white */
|
|
}
|
|
|
|
.dialog-body {
|
|
padding: 1.5rem;
|
|
overflow-y: auto;
|
|
flex: 1;
|
|
background: #1a1a1a; /* Explicit dark */
|
|
}
|
|
|
|
.doc-content {
|
|
line-height: 1.7;
|
|
color: #e0e0e0; /* Explicit light gray */
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.inline-card-ref {
|
|
font-weight: 600;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.doc-content p {
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.empty-state {
|
|
text-align: center;
|
|
padding: 3rem 1rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.modal-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.45);
|
|
backdrop-filter: blur(2px);
|
|
z-index: 1040;
|
|
animation: fade-in 0.2s ease-out;
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|