추세검색 화면 적용
This commit is contained in:
@@ -0,0 +1,805 @@
|
||||
/* GoldenChart 추세검색 — #131722 / #FFD700 테마 */
|
||||
|
||||
.bps-page--tsd {
|
||||
--tsd-bg: #131722;
|
||||
--tsd-gold: #ffd700;
|
||||
--tsd-gold-dim: color-mix(in srgb, #ffd700 65%, #131722);
|
||||
--tsd-match: #26a69a;
|
||||
--tsd-mismatch: #ef5350;
|
||||
--tsd-pending: #ffd700;
|
||||
--tsd-card: color-mix(in srgb, #1e222d 92%, #131722);
|
||||
--tsd-border: color-mix(in srgb, #ffd700 12%, #2a2e39);
|
||||
--tsd-text: #d1d4dc;
|
||||
--tsd-muted: #787b86;
|
||||
background: var(--tsd-bg);
|
||||
}
|
||||
|
||||
.bps-page--tsd .bps-header-title {
|
||||
color: var(--tsd-gold);
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.bps-page--tsd .bps-header-sub {
|
||||
color: var(--tsd-muted);
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.bps-page--tsd .bps-left,
|
||||
.bps-page--tsd .bps-center,
|
||||
.bps-page--tsd .bps-right {
|
||||
background: var(--tsd-card);
|
||||
border-color: var(--tsd-border);
|
||||
}
|
||||
|
||||
.bps-page--tsd .bps-right {
|
||||
min-width: 380px;
|
||||
}
|
||||
|
||||
/* Header actions */
|
||||
.tsd-header-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.tsd-auto-refresh {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 11px;
|
||||
color: var(--tsd-muted);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tsd-auto-refresh input {
|
||||
accent-color: var(--tsd-gold);
|
||||
}
|
||||
|
||||
.tsd-refresh-btn {
|
||||
padding: 6px 14px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid color-mix(in srgb, var(--tsd-gold) 35%, transparent);
|
||||
background: color-mix(in srgb, var(--tsd-gold) 8%, transparent);
|
||||
color: var(--tsd-gold);
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tsd-refresh-btn:hover:not(:disabled) {
|
||||
background: color-mix(in srgb, var(--tsd-gold) 18%, transparent);
|
||||
}
|
||||
|
||||
.tsd-refresh-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
/* Left filter panel */
|
||||
.tsd-filter-panel {
|
||||
padding: 12px 14px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.tsd-panel-head {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
align-items: flex-start;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 1px solid var(--tsd-border);
|
||||
}
|
||||
|
||||
.tsd-panel-icon {
|
||||
font-size: 18px;
|
||||
color: var(--tsd-gold);
|
||||
}
|
||||
|
||||
.tsd-panel-title {
|
||||
margin: 0;
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
color: var(--tsd-gold);
|
||||
}
|
||||
|
||||
.tsd-panel-sub {
|
||||
margin: 4px 0 0;
|
||||
font-size: 10px;
|
||||
color: var(--tsd-muted);
|
||||
}
|
||||
|
||||
.tsd-filter-cat {
|
||||
border: 1px solid var(--tsd-border);
|
||||
border-radius: 10px;
|
||||
background: color-mix(in srgb, var(--tsd-bg) 40%, transparent);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.tsd-filter-cat--on {
|
||||
border-color: color-mix(in srgb, var(--tsd-gold) 35%, var(--tsd-border));
|
||||
}
|
||||
|
||||
.tsd-filter-cat-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 10px 12px;
|
||||
background: color-mix(in srgb, var(--tsd-gold) 4%, transparent);
|
||||
}
|
||||
|
||||
.tsd-filter-cat-en {
|
||||
display: block;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
color: var(--tsd-gold);
|
||||
}
|
||||
|
||||
.tsd-filter-cat-ko {
|
||||
display: block;
|
||||
font-size: 10px;
|
||||
color: var(--tsd-muted);
|
||||
}
|
||||
|
||||
.tsd-toggle {
|
||||
position: relative;
|
||||
width: 36px;
|
||||
height: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tsd-toggle input {
|
||||
opacity: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.tsd-toggle-track {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border-radius: 10px;
|
||||
background: #3a3f4b;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.tsd-toggle-track::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
left: 3px;
|
||||
top: 3px;
|
||||
border-radius: 50%;
|
||||
background: #fff;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.tsd-toggle input:checked + .tsd-toggle-track {
|
||||
background: color-mix(in srgb, var(--tsd-gold) 75%, #3a3f4b);
|
||||
}
|
||||
|
||||
.tsd-toggle input:checked + .tsd-toggle-track::before {
|
||||
transform: translateX(16px);
|
||||
}
|
||||
|
||||
.tsd-filter-items {
|
||||
padding: 8px 12px 10px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.tsd-filter-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.tsd-filter-item-check {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
flex-shrink: 0;
|
||||
max-width: 48%;
|
||||
font-size: 11px;
|
||||
color: var(--tsd-text);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tsd-filter-item-check input {
|
||||
accent-color: var(--tsd-gold);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.tsd-filter-item-row {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.tsd-filter-item-desc-inline {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
font-size: 9px;
|
||||
color: var(--tsd-muted);
|
||||
line-height: 1.35;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.tsd-filter-item-text {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.tsd-filter-item-label {
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.tsd-filter-item-desc {
|
||||
margin: 0;
|
||||
padding-left: 22px;
|
||||
font-size: 9px;
|
||||
color: var(--tsd-muted);
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.tsd-filter-item--disabled {
|
||||
opacity: 0.45;
|
||||
}
|
||||
|
||||
.tsd-cond-badge {
|
||||
font-size: 8px;
|
||||
font-weight: 700;
|
||||
padding: 1px 5px;
|
||||
border-radius: 4px;
|
||||
letter-spacing: 0.02em;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.tsd-cond-badge--sort {
|
||||
color: var(--tsd-gold);
|
||||
border: 1px solid color-mix(in srgb, var(--tsd-gold) 40%, transparent);
|
||||
}
|
||||
|
||||
.tsd-cond-badge--filter {
|
||||
color: #6eb5ff;
|
||||
border: 1px solid color-mix(in srgb, #6eb5ff 40%, transparent);
|
||||
}
|
||||
|
||||
.tsd-cond-badge--na {
|
||||
color: var(--tsd-muted);
|
||||
border: 1px solid var(--tsd-border);
|
||||
}
|
||||
|
||||
.tsd-sort-select {
|
||||
width: 100%;
|
||||
padding: 8px 10px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--tsd-border);
|
||||
background: var(--tsd-bg);
|
||||
color: var(--tsd-text);
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.tsd-filter-params {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
padding-left: 22px;
|
||||
}
|
||||
|
||||
.tsd-num {
|
||||
width: 42px;
|
||||
padding: 4px 6px;
|
||||
border-radius: 6px;
|
||||
border: 1px solid var(--tsd-border);
|
||||
background: var(--tsd-bg);
|
||||
color: var(--tsd-text);
|
||||
font-size: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tsd-param-sep {
|
||||
color: var(--tsd-muted);
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.tsd-filter-section-title {
|
||||
margin: 0 0 8px;
|
||||
font-size: 10px;
|
||||
font-weight: 600;
|
||||
color: var(--tsd-gold-dim);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
.tsd-tf-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.tsd-tf-btn {
|
||||
padding: 5px 4px;
|
||||
border-radius: 6px;
|
||||
border: 1px solid var(--tsd-border);
|
||||
background: transparent;
|
||||
color: var(--tsd-muted);
|
||||
font-size: 9px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tsd-tf-btn--on {
|
||||
border-color: var(--tsd-gold);
|
||||
background: color-mix(in srgb, var(--tsd-gold) 15%, transparent);
|
||||
color: var(--tsd-gold);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.tsd-limit-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.tsd-slider {
|
||||
flex: 1;
|
||||
accent-color: var(--tsd-gold);
|
||||
}
|
||||
|
||||
.tsd-limit-val {
|
||||
min-width: 24px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
color: var(--tsd-gold);
|
||||
}
|
||||
|
||||
.tsd-search-btn {
|
||||
margin-top: auto;
|
||||
padding: 10px;
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
background: linear-gradient(135deg, color-mix(in srgb, var(--tsd-gold) 90%, #fff), var(--tsd-gold-dim));
|
||||
color: #131722;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tsd-search-btn:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: wait;
|
||||
}
|
||||
|
||||
/* Center stack */
|
||||
.tsd-center-stack {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.tsd-results {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 10px 12px;
|
||||
}
|
||||
|
||||
.tsd-results-head {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
gap: 10px;
|
||||
margin-bottom: 10px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.tsd-results-meta {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.tsd-meta-chip {
|
||||
padding: 3px 8px;
|
||||
border-radius: 6px;
|
||||
font-size: 9px;
|
||||
font-weight: 600;
|
||||
background: color-mix(in srgb, var(--tsd-gold) 10%, transparent);
|
||||
color: var(--tsd-gold-dim);
|
||||
border: 1px solid var(--tsd-border);
|
||||
}
|
||||
|
||||
.tsd-meta-chip--live {
|
||||
color: var(--tsd-match);
|
||||
border-color: color-mix(in srgb, var(--tsd-match) 30%, transparent);
|
||||
}
|
||||
|
||||
.tsd-results-table-wrap {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow: auto;
|
||||
border: 1px solid var(--tsd-border);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.tsd-results-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.tsd-results-table thead {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
background: color-mix(in srgb, var(--tsd-bg) 95%, var(--tsd-gold));
|
||||
}
|
||||
|
||||
.tsd-results-table th {
|
||||
padding: 8px 10px;
|
||||
text-align: left;
|
||||
font-size: 9px;
|
||||
font-weight: 600;
|
||||
color: var(--tsd-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.03em;
|
||||
border-bottom: 1px solid var(--tsd-border);
|
||||
}
|
||||
|
||||
.tsd-results-table td {
|
||||
padding: 9px 10px;
|
||||
border-bottom: 1px solid color-mix(in srgb, var(--tsd-border) 60%, transparent);
|
||||
color: var(--tsd-text);
|
||||
}
|
||||
|
||||
.tsd-results-table tbody tr {
|
||||
cursor: pointer;
|
||||
transition: background 0.15s;
|
||||
}
|
||||
|
||||
.tsd-results-table tbody tr:hover {
|
||||
background: color-mix(in srgb, var(--tsd-gold) 6%, transparent);
|
||||
}
|
||||
|
||||
.tsd-row--sel td {
|
||||
background: color-mix(in srgb, var(--tsd-gold) 12%, transparent) !important;
|
||||
box-shadow: inset 3px 0 0 var(--tsd-gold);
|
||||
}
|
||||
|
||||
.tsd-row--flash-up td {
|
||||
animation: tsd-flash-up 0.55s ease;
|
||||
}
|
||||
|
||||
.tsd-row--flash-down td {
|
||||
animation: tsd-flash-down 0.55s ease;
|
||||
}
|
||||
|
||||
@keyframes tsd-flash-up {
|
||||
0%, 100% { background: transparent; }
|
||||
40% { background: color-mix(in srgb, var(--tsd-match) 25%, transparent); }
|
||||
}
|
||||
|
||||
@keyframes tsd-flash-down {
|
||||
0%, 100% { background: transparent; }
|
||||
40% { background: color-mix(in srgb, var(--tsd-mismatch) 20%, transparent); }
|
||||
}
|
||||
|
||||
.tsd-col-symbol .tsd-symbol {
|
||||
font-weight: 700;
|
||||
color: var(--tsd-text);
|
||||
}
|
||||
|
||||
.tsd-col-price {
|
||||
font-weight: 700;
|
||||
color: var(--tsd-gold);
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.tsd-col-change.up { color: var(--tsd-match); font-weight: 600; }
|
||||
.tsd-col-change.down { color: var(--tsd-mismatch); font-weight: 600; }
|
||||
|
||||
.tsd-match-bar-wrap {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.tsd-match-bar {
|
||||
flex: 1;
|
||||
height: 6px;
|
||||
border-radius: 3px;
|
||||
background: color-mix(in srgb, var(--tsd-mismatch) 15%, #2a2e39);
|
||||
overflow: hidden;
|
||||
min-width: 60px;
|
||||
}
|
||||
|
||||
.tsd-match-bar-fill {
|
||||
height: 100%;
|
||||
border-radius: 3px;
|
||||
background: linear-gradient(90deg, var(--tsd-match), color-mix(in srgb, var(--tsd-gold) 40%, var(--tsd-match)));
|
||||
}
|
||||
|
||||
.tsd-match-pct {
|
||||
font-size: 10px;
|
||||
font-weight: 700;
|
||||
color: var(--tsd-match);
|
||||
min-width: 32px;
|
||||
}
|
||||
|
||||
.tsd-badge-high {
|
||||
padding: 2px 8px;
|
||||
border-radius: 4px;
|
||||
font-size: 8px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.06em;
|
||||
background: var(--tsd-gold);
|
||||
color: #131722;
|
||||
}
|
||||
|
||||
.tsd-badge-mid {
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
font-size: 8px;
|
||||
font-weight: 700;
|
||||
color: var(--tsd-match);
|
||||
border: 1px solid color-mix(in srgb, var(--tsd-match) 40%, transparent);
|
||||
}
|
||||
|
||||
.tsd-empty {
|
||||
text-align: center;
|
||||
padding: 24px !important;
|
||||
color: var(--tsd-muted);
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
/* Signal panel */
|
||||
.tsd-signal-panel {
|
||||
flex-shrink: 0;
|
||||
border-top: 1px solid var(--tsd-border);
|
||||
padding: 10px 12px 12px;
|
||||
max-height: 42%;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.tsd-signal-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.tsd-signal-label {
|
||||
display: block;
|
||||
font-size: 10px;
|
||||
font-weight: 700;
|
||||
color: var(--tsd-gold);
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.tsd-signal-count {
|
||||
font-size: 10px;
|
||||
color: var(--tsd-muted);
|
||||
}
|
||||
|
||||
.tsd-compare-wrap {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.tsd-compare-title {
|
||||
margin: 0 0 6px;
|
||||
font-size: 9px;
|
||||
font-weight: 600;
|
||||
color: var(--tsd-muted);
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
|
||||
.tsd-compare-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.tsd-compare-table th {
|
||||
padding: 5px 6px;
|
||||
text-align: left;
|
||||
font-size: 8px;
|
||||
color: var(--tsd-muted);
|
||||
border-bottom: 1px solid var(--tsd-border);
|
||||
}
|
||||
|
||||
.tsd-compare-table td {
|
||||
padding: 5px 6px;
|
||||
border-bottom: 1px solid color-mix(in srgb, var(--tsd-border) 50%, transparent);
|
||||
color: var(--tsd-text);
|
||||
}
|
||||
|
||||
.tsd-progress-cell {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.tsd-progress-bar {
|
||||
flex: 1;
|
||||
height: 4px;
|
||||
border-radius: 2px;
|
||||
background: #2a2e39;
|
||||
min-width: 40px;
|
||||
}
|
||||
|
||||
.tsd-progress-fill {
|
||||
height: 100%;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.tsd-progress-fill--match { background: var(--tsd-match); }
|
||||
.tsd-progress-fill--pending { background: var(--tsd-pending); }
|
||||
.tsd-progress-fill--mismatch { background: var(--tsd-mismatch); }
|
||||
|
||||
.tsd-status {
|
||||
font-size: 9px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.tsd-status--match { color: var(--tsd-match); }
|
||||
.tsd-status--pending { color: var(--tsd-pending); }
|
||||
.tsd-status--mismatch { color: var(--tsd-mismatch); }
|
||||
|
||||
/* Chart panel */
|
||||
.tsd-chart-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.tsd-chart-toolbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 8px 12px;
|
||||
border-bottom: 1px solid var(--tsd-border);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.tsd-chart-toolbar-title {
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
color: var(--tsd-gold);
|
||||
}
|
||||
|
||||
.tsd-chart-tools {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.tsd-chart-tool-btn {
|
||||
width: 28px;
|
||||
height: 26px;
|
||||
border-radius: 6px;
|
||||
border: 1px solid var(--tsd-border);
|
||||
background: color-mix(in srgb, var(--tsd-bg) 60%, transparent);
|
||||
color: var(--tsd-muted);
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tsd-chart-tool-btn:hover {
|
||||
border-color: var(--tsd-gold);
|
||||
color: var(--tsd-gold);
|
||||
}
|
||||
|
||||
.tsd-chart-body {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.tsd-chart-loading {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--tsd-muted);
|
||||
font-size: 12px;
|
||||
z-index: 2;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.tsd-chart-placeholder {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 12px;
|
||||
color: var(--tsd-muted);
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tsd-chart-placeholder span {
|
||||
font-size: 36px;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* Card grid (가상투자 vtd 스타일 재사용) */
|
||||
.bps-page--tsd.bps-page--vtd .bps-center {
|
||||
padding: 0;
|
||||
background: var(--tsd-bg);
|
||||
}
|
||||
|
||||
.tsd-header-view {
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.tsd-result-count {
|
||||
font-size: 11px;
|
||||
color: var(--tsd-muted);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.bps-page--tsd .vtd-grid-wrap {
|
||||
container-type: inline-size;
|
||||
container-name: vtd-wrap;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.bps-page--tsd .vtd-grid--chart-mode {
|
||||
grid-auto-rows: minmax(560px, auto);
|
||||
}
|
||||
|
||||
.tsd-card-high-badge {
|
||||
font-size: 8px;
|
||||
font-weight: 700;
|
||||
color: var(--tsd-gold);
|
||||
border: 1px solid color-mix(in srgb, var(--tsd-gold) 45%, transparent);
|
||||
border-radius: 4px;
|
||||
padding: 1px 5px;
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.tsd-card--flash-up {
|
||||
animation: tsd-flash-up 0.55s ease-out;
|
||||
}
|
||||
|
||||
.tsd-card--flash-down {
|
||||
animation: tsd-flash-down 0.55s ease-out;
|
||||
}
|
||||
|
||||
@keyframes tsd-flash-up {
|
||||
from { box-shadow: inset 0 0 0 1px color-mix(in srgb, #26a69a 70%, transparent); }
|
||||
to { box-shadow: none; }
|
||||
}
|
||||
|
||||
@keyframes tsd-flash-down {
|
||||
from { box-shadow: inset 0 0 0 1px color-mix(in srgb, #ef5350 70%, transparent); }
|
||||
to { box-shadow: none; }
|
||||
}
|
||||
|
||||
@media (max-width: 1280px) {
|
||||
.bps-page--tsd .bps-right {
|
||||
min-width: 300px;
|
||||
}
|
||||
.tsd-tf-grid {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user