308 lines
16 KiB
CSS
308 lines
16 KiB
CSS
/* ── InstaCards ──────────────────────────────────────────────────────────── */
|
|
.ic { max-width: 1100px; margin: 0 auto; padding: 16px 12px 80px; }
|
|
@media (min-width: 768px) {
|
|
.ic { padding: 24px 16px 80px; }
|
|
}
|
|
|
|
/* 헤더 */
|
|
.ic-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
|
|
.ic-header h1 { font-size: 1.5rem; font-weight: 700; color: var(--text-primary, #e4e4e7); margin: 0; }
|
|
.ic-status-badges { display: flex; gap: 8px; margin-left: auto; }
|
|
.ic-badge { font-size: 0.7rem; padding: 2px 8px; border-radius: 99px; background: rgba(236,72,153,.15); color: #ec4899; }
|
|
.ic-badge--on { background: rgba(16,185,129,.15); color: #10b981; }
|
|
.ic-badge--off { background: rgba(239,68,68,.12); color: #ef4444; }
|
|
|
|
/* 버튼 공통 */
|
|
.ic-btn { padding: 8px 18px; border-radius: 8px; border: none; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all .15s; display: inline-flex; align-items: center; gap: 6px; }
|
|
.ic-btn--primary { background: #ec4899; color: #fff; }
|
|
.ic-btn--primary:hover { background: #db2777; }
|
|
.ic-btn--primary:disabled { opacity: .5; cursor: not-allowed; }
|
|
.ic-btn--secondary { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
|
|
.ic-btn--secondary:hover { background: rgba(255,255,255,.12); }
|
|
.ic-btn--secondary:disabled { opacity: .5; cursor: not-allowed; }
|
|
.ic-btn--danger { background: rgba(239,68,68,.15); color: #ef4444; }
|
|
.ic-btn--danger:hover { background: rgba(239,68,68,.25); }
|
|
.ic-btn--sm { padding: 4px 10px; font-size: 0.75rem; }
|
|
a.ic-btn { color: inherit; }
|
|
a.ic-btn:hover { color: inherit; }
|
|
|
|
.ic-spinner { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: ic-spin .6s linear infinite; display: inline-block; }
|
|
@keyframes ic-spin { to { transform: rotate(360deg); } }
|
|
|
|
/* 레이아웃: 모바일 1컬럼, 데스크탑 2컬럼.
|
|
minmax(0, 1fr)로 자식 overflow가 부모를 밀어내지 않도록 함 */
|
|
.ic-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
|
|
.ic-layout > * { min-width: 0; }
|
|
@media (min-width: 768px) {
|
|
.ic-layout { grid-template-columns: 320px minmax(0, 1fr); }
|
|
}
|
|
|
|
/* 섹션 카드 */
|
|
.ic-section { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 16px; }
|
|
.ic-section__title { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; margin: 0 0 14px; }
|
|
|
|
/* 트리거 패널 */
|
|
.ic-trigger-buttons { display: flex; flex-direction: column; gap: 10px; }
|
|
.ic-task-status { margin-top: 10px; padding: 10px 12px; background: rgba(255,255,255,.03); border-radius: 8px; font-size: 0.8rem; }
|
|
.ic-task-status__label { color: rgba(255,255,255,.4); margin-bottom: 4px; }
|
|
.ic-task-status__msg { color: var(--text-primary, #e4e4e7); }
|
|
.ic-task-status__progress { margin-top: 6px; height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; }
|
|
.ic-task-status__fill { height: 100%; background: #ec4899; border-radius: 2px; transition: width .3s; }
|
|
|
|
/* 카테고리 필터 */
|
|
.ic-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
|
|
.ic-filter-btn { padding: 4px 12px; border-radius: 99px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: rgba(255,255,255,.5); font-size: 0.75rem; cursor: pointer; transition: all .15s; }
|
|
.ic-filter-btn--active { background: rgba(236,72,153,.18); border-color: #ec4899; color: #ec4899; }
|
|
|
|
/* 키워드 목록 */
|
|
.ic-keywords { display: flex; flex-direction: column; gap: 8px; }
|
|
.ic-keyword-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: rgba(255,255,255,.03); border-radius: 8px; }
|
|
.ic-keyword-row__kw { font-size: 0.9rem; font-weight: 600; color: var(--text-primary, #e4e4e7); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.ic-keyword-row__meta { font-size: 0.72rem; color: rgba(255,255,255,.35); white-space: nowrap; }
|
|
.ic-keyword-row__score { font-size: 0.75rem; font-weight: 700; color: #ec4899; min-width: 36px; text-align: right; }
|
|
|
|
/* 키워드 페이저 (10개씩, 이전/다음) */
|
|
.ic-keywords__pager { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 12px; }
|
|
.ic-pager-btn {
|
|
display: inline-flex; align-items: center; justify-content: center;
|
|
width: 36px; height: 36px; border-radius: 99px;
|
|
border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04);
|
|
color: rgba(255,255,255,.7); font-size: 1.1rem; cursor: pointer; transition: all .15s;
|
|
}
|
|
.ic-pager-btn:hover:not(:disabled) { background: rgba(236,72,153,.18); border-color: #ec4899; color: #ec4899; }
|
|
.ic-pager-btn:disabled { opacity: .3; cursor: not-allowed; }
|
|
.ic-pager-info { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.55); min-width: 48px; text-align: center; }
|
|
|
|
/* 슬레이트 그리드 — 모바일 2칸 강제, 데스크탑 auto-fill */
|
|
.ic-slates-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
@media (min-width: 640px) {
|
|
.ic-slates-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
|
|
}
|
|
.ic-slate-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; overflow: hidden; cursor: pointer; transition: border-color .15s; }
|
|
.ic-slate-card:hover { border-color: rgba(236,72,153,.4); }
|
|
.ic-slate-card--active { border-color: #ec4899; }
|
|
.ic-slate-thumb { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: rgba(255,255,255,.06); display: block; }
|
|
.ic-slate-thumb--placeholder { width: 100%; aspect-ratio: 4/5; background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
|
|
.ic-slate-card__info { padding: 8px; }
|
|
.ic-slate-card__kw { font-size: 0.78rem; font-weight: 600; color: var(--text-primary, #e4e4e7); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.ic-slate-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
|
|
.ic-slate-card__date { font-size: 0.65rem; color: rgba(255,255,255,.3); }
|
|
|
|
/* 상태 뱃지 */
|
|
.ic-status-badge { font-size: 0.65rem; padding: 1px 6px; border-radius: 99px; font-weight: 600; }
|
|
.ic-status-badge--draft { background: rgba(161,161,170,.15); color: #a1a1aa; }
|
|
.ic-status-badge--rendered { background: rgba(96,165,250,.15); color: #60a5fa; }
|
|
.ic-status-badge--sent { background: rgba(16,185,129,.15); color: #10b981; }
|
|
.ic-status-badge--failed { background: rgba(239,68,68,.12); color: #ef4444; }
|
|
|
|
/* 슬레이트 상세 패널 — min-width: 0으로 자식 overflow가 부모 밀지 않게 */
|
|
.ic-detail {
|
|
margin-top: 20px; padding: 16px;
|
|
background: rgba(255,255,255,.04);
|
|
border: 1px solid rgba(255,255,255,.06); border-radius: 12px;
|
|
min-width: 0; max-width: 100%;
|
|
}
|
|
.ic-detail__header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
|
|
.ic-detail__title { font-size: 1rem; font-weight: 700; color: var(--text-primary, #e4e4e7); flex: 1; min-width: 0; }
|
|
.ic-detail__actions { display: flex; gap: 8px; }
|
|
|
|
/* ── pages strip wrapper (chevron + fade + indicator 캐러셀) ── */
|
|
.ic-pages-wrap {
|
|
position: relative;
|
|
margin-bottom: 14px;
|
|
min-width: 0;
|
|
}
|
|
.ic-pages-strip {
|
|
display: flex;
|
|
gap: 8px;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
scroll-behavior: smooth;
|
|
padding: 4px 48px 12px;
|
|
-webkit-overflow-scrolling: touch;
|
|
/* 양옆 fade로 "더 있다" affordance */
|
|
mask-image: linear-gradient(to right,
|
|
transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
|
|
-webkit-mask-image: linear-gradient(to right,
|
|
transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
|
|
}
|
|
.ic-pages-strip::-webkit-scrollbar { height: 6px; }
|
|
.ic-pages-strip::-webkit-scrollbar-thumb { background: rgba(236,72,153,.4); border-radius: 3px; }
|
|
.ic-pages-strip::-webkit-scrollbar-track { background: transparent; }
|
|
|
|
.ic-page-img {
|
|
width: clamp(140px, 42vw, 220px);
|
|
flex-shrink: 0;
|
|
aspect-ratio: 4/5;
|
|
border-radius: 8px;
|
|
object-fit: cover;
|
|
scroll-snap-align: center;
|
|
border: 2px solid rgba(255,255,255,.08);
|
|
background: rgba(255,255,255,.04);
|
|
cursor: pointer;
|
|
transition: transform .15s, border-color .15s;
|
|
}
|
|
.ic-page-img.is-active {
|
|
border-color: #ec4899;
|
|
transform: scale(1.03);
|
|
}
|
|
|
|
.ic-pages-nav {
|
|
position: absolute;
|
|
top: calc(50% - 6px);
|
|
transform: translateY(-50%);
|
|
width: 40px; height: 40px;
|
|
border-radius: 50%; border: 0;
|
|
background: rgba(0,0,0,.65); color: #fff;
|
|
font-size: 24px; font-weight: 700; line-height: 1;
|
|
cursor: pointer; z-index: 2;
|
|
display: flex; align-items: center; justify-content: center;
|
|
backdrop-filter: blur(4px);
|
|
transition: opacity .15s, background .15s;
|
|
}
|
|
.ic-pages-nav:hover:not(:disabled) { background: rgba(236,72,153,.9); }
|
|
.ic-pages-nav:disabled { opacity: .2; cursor: not-allowed; }
|
|
.ic-pages-nav--prev { left: 0; }
|
|
.ic-pages-nav--next { right: 0; }
|
|
|
|
.ic-pages-indicator {
|
|
display: inline-flex; align-items: baseline; gap: 4px;
|
|
margin: 4px auto 0;
|
|
padding: 4px 12px;
|
|
background: rgba(255,255,255,.06);
|
|
border-radius: 99px;
|
|
font-size: 0.78rem;
|
|
color: rgba(255,255,255,.7);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.ic-pages-indicator-row { display: flex; justify-content: center; }
|
|
.ic-pages-indicator__current { color: #ec4899; font-weight: 700; }
|
|
.ic-pages-indicator__sep { opacity: 0.5; }
|
|
.ic-pages-indicator__total { opacity: 0.7; }
|
|
|
|
.ic-caption-box { background: rgba(255,255,255,.03); border-radius: 8px; padding: 12px; margin-bottom: 10px; }
|
|
.ic-caption-box__label { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 6px; }
|
|
.ic-caption-text { font-size: 0.85rem; color: var(--text-primary, #e4e4e7); line-height: 1.6; white-space: pre-wrap; word-break: break-word; }
|
|
.ic-hashtags { font-size: 0.8rem; color: #60a5fa; line-height: 1.8; word-break: break-all; }
|
|
|
|
/* 프롬프트 에디터 */
|
|
.ic-prompt-editor { margin-top: 20px; }
|
|
.ic-prompt-editor__title { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: 12px; text-transform: uppercase; }
|
|
.ic-prompt-block { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 14px; margin-bottom: 12px; }
|
|
.ic-prompt-block__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
|
|
.ic-prompt-block__name { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,.7); flex: 1; }
|
|
.ic-prompt-block__date { font-size: 0.68rem; color: rgba(255,255,255,.3); }
|
|
.ic-prompt-textarea { width: 100%; min-height: 140px; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; color: var(--text-primary, #e4e4e7); font-size: 0.8rem; font-family: monospace; line-height: 1.5; padding: 10px; resize: vertical; box-sizing: border-box; outline: none; }
|
|
.ic-prompt-textarea:focus { border-color: #ec4899; }
|
|
.ic-prompt-save-row { display: flex; justify-content: flex-end; margin-top: 8px; }
|
|
|
|
/* 빈 상태 */
|
|
.ic-empty { text-align: center; padding: 40px 20px; color: rgba(255,255,255,.3); font-size: 0.85rem; }
|
|
|
|
/* ── tabs ── */
|
|
.ic-tabbar { display: flex; gap: 8px; border-bottom: 1px solid #e2e8f0; margin-bottom: 16px; }
|
|
.ic-tab {
|
|
background: transparent; border: 0; padding: 10px 16px;
|
|
cursor: pointer; font-size: 14px; font-weight: 600;
|
|
color: #64748b; border-bottom: 2px solid transparent;
|
|
}
|
|
.ic-tab.is-active { color: #ec4899; border-bottom-color: #ec4899; }
|
|
|
|
/* ── trends grid ── */
|
|
.ic-trends-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
|
|
@media (min-width: 1024px) { .ic-trends-grid { grid-template-columns: 320px 1fr; } }
|
|
|
|
/* ── ic-panel base ── */
|
|
.ic-panel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 16px; }
|
|
.ic-panel__title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary, #e4e4e7); margin: 0 0 8px; }
|
|
.ic-panel__hint { font-size: 0.78rem; color: rgba(255,255,255,.4); margin: 0 0 10px; }
|
|
|
|
/* ── focus panel ── */
|
|
.ic-panel--focus .ic-focus__list { display: flex; flex-direction: column; gap: 10px; margin: 12px 0; }
|
|
.ic-focus__row { display: grid; grid-template-columns: 110px 1fr 50px; align-items: center; gap: 8px; }
|
|
.ic-focus__label { font-weight: 600; color: #475569; text-transform: capitalize; }
|
|
.ic-focus__slider { width: 100%; accent-color: #ec4899; }
|
|
.ic-focus__num { text-align: right; font-variant-numeric: tabular-nums; color: #475569; }
|
|
.ic-focus__add { display: flex; gap: 8px; margin-top: 12px; }
|
|
.ic-focus__add input { flex: 1; padding: 8px; border: 1px solid #cbd5e1; border-radius: 6px; background: rgba(255,255,255,.06); color: var(--text-primary, #e4e4e7); }
|
|
.ic-focus__add button { padding: 8px 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 6px; color: rgba(255,255,255,.7); cursor: pointer; font-size: 0.85rem; }
|
|
.ic-focus__save {
|
|
width: 100%; padding: 10px; margin-top: 12px;
|
|
background: #ec4899; color: #fff; border: 0; border-radius: 6px; cursor: pointer;
|
|
font-weight: 700;
|
|
}
|
|
.ic-focus__save:disabled { opacity: .5; cursor: not-allowed; }
|
|
.ic-focus__hint { margin-top: 12px; padding: 10px; background: rgba(245,158,11,.1); border-left: 3px solid #f59e0b; font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }
|
|
.ic-focus__hint code { background: rgba(0,0,0,.2); padding: 1px 4px; border-radius: 3px; }
|
|
|
|
/* ── trends panel ── */
|
|
.ic-trends__cols { display: grid; grid-template-columns: 1fr; gap: 16px; }
|
|
@media (min-width: 768px) { .ic-trends__cols { grid-template-columns: 1fr 1fr; } }
|
|
.ic-trends__col h4 { margin: 0 0 8px; font-size: 14px; color: rgba(255,255,255,.5); }
|
|
.ic-trend__group { margin-bottom: 14px; }
|
|
.ic-trend__group-head { font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; letter-spacing: 0.5px; }
|
|
.ic-trend__row {
|
|
display: grid; grid-template-columns: 10px 1fr 50px 36px;
|
|
align-items: center; gap: 8px; padding: 6px 4px;
|
|
border-bottom: 1px solid rgba(255,255,255,.06);
|
|
}
|
|
.ic-trend__cat-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
|
|
.ic-trend__kw { font-weight: 500; color: var(--text-primary, #e4e4e7); font-size: 0.85rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.ic-trend__score { text-align: right; color: rgba(255,255,255,.4); font-variant-numeric: tabular-nums; font-size: 12px; }
|
|
.ic-trend__make { background: #ec4899; border: 0; color: #fff; border-radius: 4px; cursor: pointer; padding: 4px; font-size: 14px; }
|
|
.ic-trend__make:hover { background: #db2777; }
|
|
|
|
.ic-panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
|
|
.ic-panel__actions { display: flex; gap: 8px; align-items: center; }
|
|
.ic-panel__actions button { padding: 6px 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; color: rgba(255,255,255,.7); cursor: pointer; font-size: 0.8rem; }
|
|
.ic-panel__actions button:disabled { opacity: .5; cursor: not-allowed; }
|
|
|
|
/* ── impact panel ── */
|
|
.ic-impact__row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
|
|
.ic-impact__chip {
|
|
display: flex; align-items: baseline; gap: 6px;
|
|
padding: 6px 12px; background: rgba(255,255,255,.06); border-radius: 999px;
|
|
}
|
|
.ic-impact__cat { font-weight: 600; text-transform: capitalize; color: rgba(255,255,255,.6); font-size: 0.82rem; }
|
|
.ic-impact__count { color: #ec4899; font-weight: 700; font-size: 0.82rem; }
|
|
|
|
/* ── slate creation progress banner (양 탭 공통) ── */
|
|
.ic-slate-progress {
|
|
margin: 8px 0 16px;
|
|
padding: 12px 16px;
|
|
border-radius: 8px;
|
|
font-size: 0.88rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
line-height: 1.5;
|
|
}
|
|
.ic-slate-progress--starting,
|
|
.ic-slate-progress--processing {
|
|
background: rgba(245, 158, 11, 0.12);
|
|
color: #fbbf24;
|
|
border-left: 4px solid #f59e0b;
|
|
}
|
|
.ic-slate-progress--succeeded {
|
|
background: rgba(16, 185, 129, 0.12);
|
|
color: #34d399;
|
|
border-left: 4px solid #10b981;
|
|
cursor: pointer;
|
|
}
|
|
.ic-slate-progress--failed {
|
|
background: rgba(239, 68, 68, 0.12);
|
|
color: #f87171;
|
|
border-left: 4px solid #ef4444;
|
|
cursor: pointer;
|
|
}
|
|
.ic-slate-progress__hint {
|
|
opacity: 0.7;
|
|
font-size: 0.78rem;
|
|
margin-left: 6px;
|
|
}
|