Spaces:
Running
Running
File size: 1,841 Bytes
af980d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | .card {
width: 100%;
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: var(--radius-xl);
padding: 18px;
display: flex;
flex-direction: column;
gap: 14px;
box-shadow: var(--shadow-sm);
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.titleWrap {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--text-primary);
font-size: 14px;
font-weight: 700;
}
.viewport {
position: relative;
border-radius: 20px;
overflow: hidden;
background: var(--bg-surface-2);
min-height: 230px;
border: 1px solid var(--border);
}
.video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.videoHidden {
opacity: 0;
pointer-events: none;
}
.videoVisible {
opacity: 1;
}
.placeholder {
min-height: 230px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
color: var(--text-muted);
text-align: center;
padding: 24px;
}
.canvas {
display: none;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
}
.primaryBtn,
.secondaryBtn {
display: inline-flex;
align-items: center;
gap: 8px;
border-radius: 12px;
padding: 10px 14px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
border: 1px solid transparent;
}
.primaryBtn {
background: var(--accent);
color: white;
}
.secondaryBtn {
background: var(--bg-surface-2);
color: var(--text-secondary);
border-color: var(--border);
}
.primaryBtn:disabled {
opacity: 0.7;
cursor: not-allowed;
}
.error {
color: var(--ai-generated);
font-size: 13px;
font-weight: 600;
}
.spin {
animation: spin 0.9s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
|