@press2ai/theme-specialist-glossy 0.5.0 → 0.5.1
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/package.json +1 -1
- package/src/styles/glossy.css +13 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@press2ai/theme-specialist-glossy",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Classless, AI-first theme inspired by Stripe. Framework-agnostic templates (Hono, Astro, raw HTML). Semantic HTML, Schema.org microdata, JSON-LD — built for LLM crawlers.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
package/src/styles/glossy.css
CHANGED
|
@@ -172,6 +172,19 @@ nav[aria-label] a:nth-child(5n+3):hover { border-color: var(--rose); color: var(
|
|
|
172
172
|
nav[aria-label] a:nth-child(5n+4):hover { border-color: var(--amber); color: var(--amber); background: var(--amber-s); }
|
|
173
173
|
nav[aria-label] a:nth-child(5n+5):hover { border-color: var(--sky); color: var(--sky); background: var(--sky-s); }
|
|
174
174
|
|
|
175
|
+
/* How it works — full-bleed band */
|
|
176
|
+
.how-it-works {
|
|
177
|
+
margin: 0 calc(50% - 50vw) var(--g7) calc(50% - 50vw);
|
|
178
|
+
padding: var(--g7) var(--pad);
|
|
179
|
+
background: var(--white);
|
|
180
|
+
border-top: 1px solid var(--line);
|
|
181
|
+
border-bottom: 1px solid var(--line);
|
|
182
|
+
}
|
|
183
|
+
.how-it-works > section {
|
|
184
|
+
max-width: var(--container);
|
|
185
|
+
margin: 0 auto;
|
|
186
|
+
}
|
|
187
|
+
|
|
175
188
|
/* Steps */
|
|
176
189
|
section:has(> ol) > h2 { text-align: center; margin-bottom: var(--g5); }
|
|
177
190
|
section > ol {
|