/* ─── 1. CSS 변수 ─────────────────────────────────────── */ :root { --custom-font: 'Courier New', Courier, monospace; --custom-size: 9px; --custom-spacing: -0.05em; } /* ─── 2. 바디 기본 ────────────────────────────────────── */ body { background-color: #fff; padding: 30px; font-family: var(--custom-font); } /* ─── 3. 전역 타이포 ──────────────────────────────────── */ body * { font-family: var(--custom-font); font-size: var(--custom-size); letter-spacing: var(--custom-spacing); text-transform: uppercase; font-weight: normal; color: #000; background-color: transparent; } body { background-color: #fff; } /* ─── 4. Ghost UI 숨김 (본문 관련 클래스는 절대 건드리지 말것) ── */ .gh-head, .gh-foot, .gh-powered-by, .gh-subscribe, .subscribe-button, .gh-search, .gh-search-trigger, button[data-ghost-search] { display: none; } /* ─── 5. 커스텀 컨테이너 ──────────────────────────────── */ .custom-container { display: block; } .custom-link { display: inline-block; border-bottom: 1px solid #000; margin-top: 10px; cursor: crosshair; color: inherit; text-decoration: none; }