Feature set 177. - #92
Merged
Merged
Conversation
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Centre the hero moogle between the
mand theo, and give it a hover animation.Centring.
.hero h1hasletter-spacing: 0.15em, which is trailing space — thempushed 0.15em against the moogle's left while theocontributed nothing on its right, so the symmetricmargin: 0 -0.04emsat it hard against theo. Margins are now0 0.035em 0 -0.115em: a 0.15em difference that cancels the letter-spacing, averaging to the same -0.04em so the wordmark's total width is unchanged.Hover. A
moogle-wobblekeyframe (up and +6°, over-rotate to -16°, settle at -8° with a 1.12 scale) plus a springy 0.35s transition on transform and filter for the return.transform-originmoved to50% 65%so it pivots near its feet.:focus-visiblegets the same treatment, since the moogle is the FFIV-mode toggle and hover is the only hint it does anything.The rule that was blocking it.
#moogle-egg:hoversettransform: ... scale(1.2) !important— an!importantauthor declaration outranks CSS animations, so the wobble ran and had its output discarded every frame; and because a running animation suppresses the transition on the same property, the scale snapped instead of easing. That rule lived in the FFIV block but the hero isdisplay: nonein ff-mode, so it only ever fired on the silver page. Removed; its gold glow (a deliberate teaser of the FFIV accent) moved into the hover rule that now solely owns the transform.Reduced motion keeps the hover state and drops the wobble and easing.
🤖 Generated with Claude Code