Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions skills/talking-head-recut/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -913,6 +913,17 @@ ffmpeg -y -i "$VIDEO_PATH" -c:v libx264 -crf 18 -g 30 -keyint_min 30 \
border-radius: 16px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Pip chrome: `.framed` plus a white ring, so a pip reads as a distinct
inset against a busy background. The ring is a box-shadow spread rather
than a border, so it adds no layout box and the pixel-exact pip targets
in the GSAP lookup table stay correct. */
.video-wrapper.pip-pill {
border-radius: 16px;
box-shadow:
0 0 0 3px rgba(255, 255, 255, 0.9),
0 12px 40px rgba(0, 0, 0, 0.35);
}
</style>
</head>
<body>
Expand Down