@press2ai/theme-specialist-glossy 0.5.4 → 0.6.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@press2ai/theme-specialist-glossy",
3
- "version": "0.5.4",
3
+ "version": "0.6.0",
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",
@@ -65,15 +65,44 @@ main {
65
65
  main > h1:first-child, main > article:first-child { margin-top: var(--g5); }
66
66
  main > section { margin-bottom: var(--g6); }
67
67
 
68
- /* Footer */
69
- body > footer { border-top: 1px solid var(--line); padding: var(--g4) 0; text-align: center; }
70
- body > footer small { display: block; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); color: var(--ink-3); }
71
- body > footer a { color: var(--violet); }
68
+ /* Footer — Swiss Design: grid, tight, structured */
69
+ body > footer {
70
+ border-top: 1px solid var(--line); background: var(--white);
71
+ padding: var(--g5) 0 var(--g4);
72
+ }
73
+ body > footer > small {
74
+ display: block; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad);
75
+ color: var(--ink-3); font-size: var(--t-xs);
76
+ }
77
+ body > footer a { color: var(--ink-2); transition: color var(--ease); }
78
+ body > footer a:hover { color: var(--violet); }
79
+
80
+ .footer-grid {
81
+ display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--g4);
82
+ max-width: var(--container); margin-inline: auto; padding-inline: var(--pad);
83
+ margin-bottom: var(--g4);
84
+ }
85
+ .footer-col strong {
86
+ display: block; font-size: var(--t-xs); font-weight: 600; color: var(--ink);
87
+ text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--g2);
88
+ }
89
+ .footer-col p {
90
+ font-size: var(--t-xs); line-height: 1.6; color: var(--ink-3); margin: 0; max-width: 36ch;
91
+ }
92
+ .footer-col a {
93
+ display: block; font-size: var(--t-xs); line-height: 2; color: var(--ink-3);
94
+ }
95
+ .footer-col a:hover { color: var(--violet); }
96
+ .footer-meta {
97
+ max-width: var(--container); margin: 0 auto; padding: var(--g3) var(--pad) 0;
98
+ border-top: 1px solid var(--line);
99
+ font-size: var(--t-xs); color: var(--ink-3); text-align: left;
100
+ }
72
101
 
73
102
  /* Hero */
74
103
  hgroup {
75
104
  position: relative; text-align: center; isolation: isolate; overflow: hidden;
76
- padding: var(--g5) var(--pad) var(--g5);
105
+ padding: var(--g6) var(--pad) var(--g5);
77
106
  margin: 0 calc(50% - 50vw) var(--g6) calc(50% - 50vw);
78
107
  background:
79
108
  radial-gradient(ellipse 70% 50% at 20% 30%, var(--violet-glow) 0%, transparent 60%),
@@ -292,22 +321,6 @@ main > nav a {
292
321
  }
293
322
  main > nav a:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-1px); }
294
323
 
295
- /* Trust */
296
- .trust {
297
- margin: var(--g6) auto; padding: var(--g5); max-width: var(--w-8);
298
- background: linear-gradient(135deg, var(--teal-s) 0%, #f0fdf8 100%);
299
- border: 1px solid rgba(13,148,136,.15); border-radius: var(--r-lg); text-align: center;
300
- }
301
- .trust strong {
302
- display: block; font-size: var(--t-md); line-height: 1.3; margin-bottom: var(--g3); color: var(--teal);
303
- }
304
- .trust ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--g1); }
305
- .trust li {
306
- font-size: var(--t-sm); color: var(--ink-2); line-height: 1.5;
307
- display: flex; align-items: center; justify-content: center; gap: var(--g1);
308
- }
309
- .trust li::before { content: '✓'; color: var(--teal); font-weight: 700; }
310
-
311
324
  /* Forms */
312
325
  label { display: block; font-size: var(--t-sm); color: var(--ink-2); font-weight: 500; margin-bottom: var(--g1); }
313
326
  input[type="text"] {
@@ -329,7 +342,7 @@ form:not([role="search"]) button[type="submit"]:hover { background: var(--ink);
329
342
  @media (max-width: 640px) {
330
343
  :root { --pad: var(--g3); }
331
344
  main { padding: 0 var(--pad) var(--g4); }
332
- hgroup { padding: var(--g4) var(--pad) var(--g4); }
345
+ hgroup { padding: var(--g5) var(--pad) var(--g4); }
333
346
  section:has(> article[itemscope]) { grid-template-columns: 1fr; }
334
347
  section > ol { grid-template-columns: 1fr; }
335
348
  section > dl { grid-template-columns: 1fr; max-width: 100%; padding: var(--g3); }
@@ -340,4 +353,5 @@ form:not([role="search"]) button[type="submit"]:hover { background: var(--ink);
340
353
  form[role="search"] input { font-size: var(--t-xs); }
341
354
  .trust ul { text-align: left; }
342
355
  .how-it-works { padding: var(--g4) var(--pad); }
356
+ .footer-grid { grid-template-columns: 1fr; gap: var(--g3); }
343
357
  }