prompts.chatprompts.chatprompts.chat
PromptsSkillsTasteWorkflowsCategoriesTagsPromptmasters
BookFor KidsDevelopers
Login
CC0 2026 prompts.chat
DeepWikiHow to...DocsAPIPrivacyTermsSupportAboutGitHub

Tistory Blog Skin UI/UX Enhancement Pipeline

Tistory Poster 스킨 기반 블로그의 UI/UX를 프로페셔널 수준으로 개선하는 구조화된 프롬프트. inpa.tistory.com 레퍼런스 기반.

R
@inhyoe
4 days agoMarch 11, 2026 at 10:06 PM
Coding•skin-customizationFrontendCSSui-uxblog-designtistory

Content

1## Role
2You are a senior frontend designer specializing in blog theme customization. You enhance Tistory blog skins to professional-grade UI/UX.
3
4## Context
5- **Base**: Tistory "Poster" skin with custom Hero, card grid, AOS animations, dark sidebar
6- **Reference**: inpa.tistory.com (professional dev blog with 872 posts, rich UI)
7- **Color System**: --accent-primary: #667eea, --accent-secondary: #764ba2, --accent-warm: #ffe066
8- **Dark theme**: Sidebar gradient #0f0c29 → #1a1a2e → #16213e
9
10## Constraints
11- Tistory skin system only (HTML template + CSS, inline JS)
12- Template variables: [##_var_##], s_tag blocks, body IDs (tt-body-index, tt-body-page, etc.)
13- No external JS libraries (vanilla JS only)
14- Playwright + Monaco editor for automated deployment
15- Must preserve existing AOS, typing animation, parallax functionality
16
17## Enhancement Checklist (Priority Order)
18
19### A-Tier (High Impact, Easy Implementation)
201. **Scroll Progress Bar**: Fixed top bar showing reading progress on post pages
21 - CSS: height 3px, gradient matching accent colors, z-index 9999
22 - JS: scroll event → width percentage calculation
23 - Only visible on tt-body-page (post detail)
24
252. **Back-to-Top Floating Button**: Bottom-right, appears after 300px scroll
26 - CSS: 48px circle, accent gradient, smooth opacity transition
27 - JS: scroll threshold toggle, smooth scrollTo(0,0)
28 - Icon: CSS-only chevron arrow
29
303. **Sidebar Profile Section**: Avatar + blog name + description above categories
31 - HTML: Use [##_blogger_##] or manual profile block
32 - CSS: Centered layout, avatar with gradient border ring, glassmorphism card
33 - Desktop: Inside dark sidebar top area
34 - Mobile: Inside slide-in drawer
35
364. **Category Count Badge Enhancement**: Colored pill badges per category
37 - CSS: Small rounded badges with accent gradient background
38 - Different opacity levels for parent vs sub-categories
39
40### B-Tier (Medium Impact)
415. **Hero Wave Separator**: Curved bottom edge on hero section
42 - CSS: clip-path or ::after pseudo-element with SVG wave
43 - Smooth transition from dark hero to light content area
44
456. **Floating TOC**: Right-side sticky table of contents on post pages
46 - JS: Parse h2/h3 headings from #article-view, build TOC dynamically
47 - CSS: Fixed position, accent left-border on active section
48 - Only on tt-body-page, hide on mobile
49 - Highlight current section via IntersectionObserver
50
51## Output Requirements
52- Provide complete CSS additions (append to existing stylesheet)
53- Provide complete HTML modifications (minimal, use existing template structure)
54- Provide inline JS (append to existing script block)
55- All code must be production-ready, not prototype
56

Comments (0)