원클릭으로
design-responsive
Breakpoints, fluid typography, container queries ve modern CSS features.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Breakpoints, fluid typography, container queries ve modern CSS features.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guide for conducting comprehensive accessibility audits of code to identify WCAG compliance issues and barriers to inclusive design. This skill should be used when reviewing accessibility, ARIA implementation, keyboard navigation, or screen reader compatibility.
Transform clarified user requests into structured delegation prompts optimized for specialist agents (cto-architect, strategic-cto-mentor, cv-ml-architect). Use after clarification is complete, before routing to specialist agents. Ensures agents receive complete context for effective work.
AGENTS.md dosyaları oluşturma, monorepo yapılandırma ve agent instruction yönetimi rehberi.
p5.js ile generative art, flow fields ve interactive visuals oluşturma rehberi.
API tasarımı, GraphQL schema, OpenAPI spec, versioning. ⚠️ Tasarım aşaması için kullan. Uygulama/security için → backend-api.
ADR template, database selection, capacity planning ve scalability.
| name | design_responsive |
| description | Breakpoints, fluid typography, container queries ve modern CSS features. |
Responsive tasarım ve modern CSS özellikleri.
Mobile: 0 - 639px
Tablet SM: 640 - 767px
Tablet: 768 - 1023px
Desktop: 1024 - 1439px
Wide: 1440px+
sm: 640px
md: 768px
lg: 1024px
xl: 1280px
2xl: 1536px
:root {
--fluid-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
--fluid-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
--fluid-lg: clamp(1.25rem, 1rem + 1vw, 1.5rem);
--fluid-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
--fluid-2xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
}
| Device | Max-Width | Padding |
|---|---|---|
| Mobile | 100% | 16px |
| Tablet | 768px | 24px |
| Desktop | 1200px | 32px |
| Wide | 1440px | 48px |
.card-container {
container-type: inline-size;
}
@container (min-width: 400px) {
.card-content {
display: grid;
grid-template-columns: 1fr 2fr;
}
}
/* Dark mode */
@media (prefers-color-scheme: dark) { }
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
* { animation-duration: 0.01ms !important; }
}
/* High contrast */
@media (prefers-contrast: high) { }
| Device | Columns | Gutter |
|---|---|---|
| Mobile | 4 | 16px |
| Tablet | 8 | 16px |
| Desktop | 12 | 24px |
Kaynak: MDN - Container Queries & Utopia - Fluid Responsive Design
clamp() fonksiyonlarını hesapla ve entegre et.CSS Grid (Area naming) ve Flexbox (Gap) kullan.srcset ve aspect-ratio kullanarak görsel yüklemelerini ve düzenini optimize et.prefers-color-scheme ve prefers-reduced-motion desteğini test et.| Aşama | Doğrulama |
|---|---|
| 1 | Tasarım 320px (iPhone SE) ve 2560px (Ultra-wide) arasında sorunsuz mu? |
| 2 | Horizontal scroll oluşuyor mu? (Overflow kontrolü) |
| 3 | Font boyutları her viewport'ta okunabilir mi? |
Design Responsive v1.5 - With Workflow