@semanticintent/recall 0.3.11 → 0.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generator/html.js +4 -4
- package/package.json +1 -1
package/dist/generator/html.js
CHANGED
|
@@ -82,7 +82,7 @@ section.style-grid-bg { background-image: linear-gradient(rgba(255,255,255,0.025
|
|
|
82
82
|
.layout-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
|
|
83
83
|
.layout-flex { display: flex; gap: 24px; flex-wrap: wrap; }
|
|
84
84
|
.layout-stack { display: flex; flex-direction: column; gap: 20px; }
|
|
85
|
-
h1 { font-size: clamp(
|
|
85
|
+
h1 { font-size: clamp(26px, 3vw, 40px); font-weight: 600; line-height: 1.1; margin-bottom: 24px; }
|
|
86
86
|
h2 { font-size: clamp(22px, 2.5vw, 34px); font-weight: 600; line-height: 1.15; margin-bottom: 16px; }
|
|
87
87
|
h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
|
|
88
88
|
h1.style-mono, h2.style-mono, h3.style-mono { font-family: var(--font-mono); }
|
|
@@ -91,7 +91,7 @@ p { font-family: var(--font-sans); color: var(--muted); max-width: 680px; margin
|
|
|
91
91
|
p.color-text { color: var(--text); }
|
|
92
92
|
p.color-accent { color: var(--accent); }
|
|
93
93
|
p code { font-family: var(--font-mono); font-size: 0.85em; color: var(--accent); background: rgba(0,255,65,0.07); padding: 1px 6px; border: 1px solid rgba(0,255,65,0.15); }
|
|
94
|
-
.recall-label { font-size:
|
|
94
|
+
.recall-label { display: inline-block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-family: var(--font-mono); margin-bottom: 16px; border: 1px solid rgba(0,255,65,0.25); padding: 4px 10px; }
|
|
95
95
|
.recall-btn { display: inline-block; padding: 12px 28px; font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border: none; transition: opacity 0.2s; }
|
|
96
96
|
.recall-btn.primary { background: var(--accent); color: var(--bg); }
|
|
97
97
|
.recall-btn.ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
|
|
@@ -105,7 +105,7 @@ p code { font-family: var(--font-mono); font-size: 0.85em; color: var(--accent);
|
|
|
105
105
|
.code-block-dots span:nth-child(1) { background: #ff5f57; }
|
|
106
106
|
.code-block-dots span:nth-child(2) { background: #febc2e; }
|
|
107
107
|
.code-block-dots span:nth-child(3) { background: #28c840; }
|
|
108
|
-
pre.code-block { font-family: var(--font-mono); font-size: 13px; background: #0e0e0e; padding: 20px 24px; overflow-x: auto; line-height: 1.75; color: #c9d1d9; margin: 0; }
|
|
108
|
+
pre.code-block { font-family: var(--font-mono); font-size: 13px; background: #0e0e0e; padding: 20px 24px; overflow-x: auto; line-height: 1.75; color: #c9d1d9; margin: 0; white-space: pre; }
|
|
109
109
|
.tok-kw { color: #7ee787; }
|
|
110
110
|
.tok-stmt { color: var(--accent); }
|
|
111
111
|
.tok-with { color: #d2a8ff; }
|
|
@@ -133,7 +133,7 @@ footer p { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; colo
|
|
|
133
133
|
footer.align-center { text-align: center; }
|
|
134
134
|
footer.align-right { text-align: right; }
|
|
135
135
|
.layout-sidebar { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; align-items: start; }
|
|
136
|
-
.layout-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:
|
|
136
|
+
.layout-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
|
|
137
137
|
.split-col { display: flex; flex-direction: column; gap: 20px; }
|
|
138
138
|
.sidebar-rail { border-right: 1px solid var(--border); padding: 32px 0; }
|
|
139
139
|
.sidebar-rail.sticky { position: sticky; top: 0; height: 100vh; overflow-y: auto; }
|
package/package.json
CHANGED