Cleanup
This commit is contained in:
@@ -95,123 +95,150 @@
|
||||
}
|
||||
|
||||
/* Syndicate Colors */
|
||||
.singularity { color: #ffffff; }
|
||||
.phasetide { color: #2196f3; }
|
||||
.silence { color: #9c27b0; }
|
||||
.lifeblood { color: #4caf50; }
|
||||
.sungrace { color: #ff9800; }
|
||||
.splintergleam { color: #f44336; }
|
||||
.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;
|
||||
}
|
||||
/* ── 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); }
|
||||
@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 {
|
||||
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-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 {
|
||||
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-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 */
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.doc-content {
|
||||
line-height: 1.7;
|
||||
color: #e0e0e0; /* Explicit light gray */
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.inline-card-ref {
|
||||
font-weight: 600;
|
||||
color: var(--accent);
|
||||
}
|
||||
.inline-card-ref {
|
||||
font-weight: 600;
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.doc-content p {
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
.doc-content p {
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 3rem 1rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.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; }
|
||||
@keyframes fade-in {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user