refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조

에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게
[공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류.
문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인).

- Topic_Programming → Domain_Programming (내부 구조 보존)
- Topic_Graphic → Domain_Design
- Topic_Business → Domain_Product
- Topic_General → Domain_General
- _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning),
  Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing)
- 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서)
- 빈 폴더 정리 (memory/procedures)
- 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Antigravity Agent
2026-07-11 11:05:56 +09:00
parent 6549ead309
commit c24165b8bc
6193 changed files with 1717 additions and 31 deletions
@@ -0,0 +1,75 @@
---
id: w3css-trends
title: "W3CSS Trends"
category: "Programming_Language"
status: "draft"
verification_status: "conceptual"
canonical_id: ""
aliases: ["flat design", "material design", "mobile first", "W3.CSS 웹디자인 트렌드"]
duplicate_of: ""
source_trust_level: "B"
confidence_score: 0.82
created_at: 2026-07-04
updated_at: 2026-07-04
review_reason: ""
merge_history: []
tags: ["w3css", "css-framework", "w3schools", "design-trends"]
raw_sources: ["https://www.w3schools.com/w3css/w3css_trends.asp"]
applied_in: []
github_commit: ""
---
# [[W3CSS Trends]]
## 🎯 한 줄 통찰 (One-line insight)
The source frames flat design's central usability problem as ambiguous CLICKABILITY ("what is the difference between an image and a clickable button?") — and shows "Almost Flat" (Flat 2.0) emerged specifically to solve that problem by re-adding depth cues (shadows, hover effects) WITHOUT fully reverting to skeuomorphism, meaning design trends here are framed as successive fixes to specific usability regressions, not just aesthetic fashion cycles. [S1]
## 🧠 핵심 개념 (Core concepts)
- **Flat Design** — originated with Windows Phone 7/Windows 8 (2010), adopted by Apple iOS 7 (2013); uses bold marketing/road-sign colors; core weakness is unclear clickability. [S1]
- **Almost Flat (Flat 2.0)** — adds back depth via shadows and hover effects while keeping flat design's bright colors and simplicity. [S1]
- **Material Design** — Google (2014); paper-and-ink metaphor with realistic shadows and hover effects; the source frames it as the successor once "flat" and "almost flat" both peaked. [S1]
- **Cards** — a general-purpose content structure (image + text on an equal plane) usable at any size, with or without shadows. [S1]
- **Readable Typography** — flat design correlates with larger letter/line spacing and bigger font sizes to prioritize reader attention. [S1]
- **Mobile First** — a reversal of historical practice: design for mobile FIRST, then add responsive behavior for desktop, rather than the old desktop-first-then-adapt approach. [S1]
- **Hero Images** — a large front-page banner image (static or rotating) meant to present a site's single most important message. [S1]
- **Single Page design** — replacing multi-page click navigation with vertical scrolling on one page, a technique that spread from social networks to general sites. [S1]
## 📖 세부 내용 (Details)
- Full-screen input trend: modern signup/login forms increasingly use a full-screen overlay or modal rather than a small embedded form section or page redirect. [S1]
- 50/50 responsive layout: shows two content panels side-by-side on large screens, collapsing to one panel per screen on narrow (mobile) screens — cited as an easy way to achieve mobile-first responsive design. [S1]
## ⚖️ 모순 및 업데이트 (Contradictions & updates)
- **플랫 디자인의 근본 약점**: 어떤 영역이 클릭 가능한지 구분하기 어렵다는 문제가 명시적으로 지적되며, 이것이 Almost Flat과 Material Design 등장의 직접적 동기로 설명됨. [S1]
## 🛠️ 적용 사례 (Applied in summary)
현재 발견된 실제 적용 사례가 없습니다 — 카드(Cards)/타이포그래피/히어로 이미지 등 이 챕터에서 소개된 트렌드 요소들이 실제로 W3.CSS 클래스(w3-card, w3-jumbo 등)로 이미 구현되어 있다는 점에서 이론과 실전이 직결된 챕터다. [S1]
## 💻 코드 패턴 (Code patterns)
A card component embodying the "cards" design trend (HTML/CSS):
```html
<div class="w3-card-4" style="width:50%">
<img src="img_avatar.jpg" style="width:100%">
<div class="w3-container">
<h4><b>John</b></h4>
<p>Architect and engineer</p>
</div>
</div>
```
## ✅ 검증 상태 및 신뢰도
- **상태:** draft
- **검증 단계:** conceptual
- **출처 신뢰도:** B (W3Schools — widely used educational reference, not a primary standards body)
- **신뢰 점수:** 0.82
- **중복 검사 결과:** 신규 생성 (New discovery)
## 🔗 지식 그래프 (Knowledge Graph)
- **상위/루트:** [[W3.CSS Tutorial]]
- **관련 개념:** [[W3CSS Cards]], [[W3CSS Filters]], [[W3CSS Case]], [[W3CSS Material]]
- **참조 맥락:** 디자인 트렌드 개관 챕터 — 실전 사이트 구축(Case Study)과 머티리얼 디자인(Material) 챕터로 이어짐.
## 📚 출처 (Sources)
- [S1] W3Schools — W3.CSS Trends — https://www.w3schools.com/w3css/w3css_trends.asp
## 📝 변경 이력 (Change history)
- 2026-07-04: Initial draft synthesized from the W3Schools "W3.CSS Trends" page (Astra wiki-curation, P-Reinforce v3.1 format).