34 lines
683 B
CSS
34 lines
683 B
CSS
.card-preview-popup {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
pointer-events: none;
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
|
|
padding: 0.5rem;
|
|
width: 220px;
|
|
transition: opacity 0.15s ease-in-out;
|
|
}
|
|
|
|
.preview-content img {
|
|
width: 100%;
|
|
height: auto;
|
|
border-radius: 4px;
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.preview-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 0.9rem;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.preview-cost {
|
|
color: var(--accent);
|
|
font-weight: bold;
|
|
}
|