-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyleguide.html
More file actions
27 lines (27 loc) · 1.29 KB
/
Copy pathstyleguide.html
File metadata and controls
27 lines (27 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="fr" class="theme-dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MemoForge — Styleguide</title>
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ctext y='13' font-size='14' font-family='monospace' fill='%2346E08A'%3EM%3C/text%3E%3C/svg%3E" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/components.css" />
<style>
.sg-section { margin: 1.5rem 0; }
.sg-h { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: var(--ls-kicker); color: var(--accent); margin: 0 0 .75rem; }
.sg-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-start; }
.sg-demo { display: flex; flex-direction: column; gap: .35rem; }
.sg-caption { font-size: var(--fs-2xs); color: var(--text-muted); letter-spacing: .06em; text-align: center; }
.sg-terminal-inner { padding: 16px 20px; color: var(--text); }
</style>
</head>
<body>
<main class="wrap">
<h1 class="brand">Styleguide</h1>
<p class="tagline">Couche composant du design-system MemoForge — tous les états, token-driven.</p>
<div id="guide"></div>
</main>
<script type="module" src="src/ui/styleguide.js"></script>
</body>
</html>