@press2ai/theme-specialist-glossy 3.0.0 → 3.0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@press2ai/theme-specialist-glossy",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Classless, AI-first glossy theme. 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/ai.ts CHANGED
@@ -59,7 +59,7 @@ export function getAiManifest(opts: {
59
59
 
60
60
  powered_by: {
61
61
  name: '@press2ai/theme-specialist-glossy',
62
- version: '3.0.0',
62
+ version: '3.0.1',
63
63
  homepage: 'https://www.npmjs.com/package/@press2ai/theme-specialist-glossy',
64
64
  },
65
65
 
@@ -33,19 +33,6 @@ body {
33
33
  letter-spacing: -.011em;
34
34
  }
35
35
 
36
- /* --- HEADER --- */
37
- body > header {
38
- position: sticky; top: 0; z-index: 50;
39
- background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(16px);
40
- border-bottom: 1px solid var(--border);
41
- }
42
- body > header nav {
43
- max-width: var(--container); margin-inline: auto; padding-inline: var(--pad);
44
- height: 48px; display: flex; align-items: center; justify-content: space-between;
45
- }
46
- body > header nav a { color: var(--fg-muted); font-size: 13px; font-weight: 500; text-decoration: none; }
47
- body > header nav a strong { font-size: 1rem; font-weight: 700; color: var(--fg); }
48
-
49
36
  /* --- MAIN (container) --- */
50
37
  main { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
51
38
  main > * + * { margin-top: var(--g5); }
@@ -72,26 +59,6 @@ label { display: block; font-size: 14px; font-weight: 600; margin-bottom: var(--
72
59
  button, input[type="submit"] { background: var(--accent); color: var(--surface); border: none; border-radius: var(--pill); padding: var(--g2) var(--g4); font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer; transition: all var(--ease); }
73
60
  button:hover, input[type="submit"]:hover { opacity: .85; }
74
61
 
75
- /* --- FOOTER --- */
76
- body > footer {
77
- border-top: 1px solid var(--border); background: var(--surface);
78
- padding: var(--g5) 0 var(--g4); margin-top: var(--g6);
79
- }
80
- body > footer > small {
81
- display: block; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad);
82
- color: var(--fg-faint); font-size: .8rem;
83
- }
84
- body > footer a { color: var(--fg-muted); transition: color var(--ease); text-decoration: none; }
85
- body > footer a:hover { color: var(--accent); }
86
- body > footer > small > nav {
87
- display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--g4); margin-bottom: var(--g4);
88
- }
89
- body > footer > small > nav section { all: unset; display: block; }
90
- body > footer > small > nav strong { display: block; font-size: .8rem; font-weight: 600; color: var(--fg); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--g2); }
91
- body > footer > small > nav p { font-size: .8rem; line-height: 1.6; color: var(--fg-faint); margin: 0; max-width: 36ch; }
92
- body > footer > small > nav a { display: block; font-size: .8rem; line-height: 2; }
93
- body > footer > small > p { padding-top: var(--g3); border-top: 1px solid var(--border); }
94
-
95
62
  /* --- RESPONSIVE --- */
96
63
  @media (max-width: 640px) {
97
64
  :root { --pad: var(--g2); }
@@ -1,23 +1,21 @@
1
1
  export const css = `body > footer {
2
- border-top: 1px solid var(--line); background: var(--white); padding: var(--g5) 0 var(--g4);
2
+ border-top: 1px solid var(--border); background: var(--surface);
3
+ padding: var(--g5) 0 var(--g4); margin-top: var(--g6);
3
4
  }
4
5
  body > footer > small {
5
6
  display: block; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad);
6
- color: var(--ink-3); font-size: var(--t-xs);
7
+ color: var(--fg-faint); font-size: .8rem;
7
8
  }
8
- body > footer a { color: var(--ink-2); transition: color var(--ease); }
9
- body > footer a:hover { color: var(--violet); }
9
+ body > footer a { color: var(--fg-muted); transition: color var(--ease); text-decoration: none; }
10
+ body > footer a:hover { color: var(--accent); }
10
11
  body > footer > small > nav {
11
12
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--g4); margin-bottom: var(--g4);
12
13
  }
13
14
  body > footer > small > nav section { all: unset; display: block; }
14
- body > footer > small > nav strong {
15
- display: block; font-size: var(--t-xs); font-weight: 600; color: var(--ink);
16
- text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--g2);
17
- }
18
- body > footer > small > nav p { font-size: var(--t-xs); line-height: 1.6; color: var(--ink-3); margin: 0; max-width: 36ch; }
19
- body > footer > small > nav a { display: block; font-size: var(--t-xs); line-height: 2; }
20
- body > footer > small > p { padding-top: var(--g3); border-top: 1px solid var(--line); }
15
+ body > footer > small > nav strong { display: block; font-size: .8rem; font-weight: 600; color: var(--fg); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--g2); }
16
+ body > footer > small > nav p { font-size: .8rem; line-height: 1.6; color: var(--fg-faint); margin: 0; max-width: 36ch; }
17
+ body > footer > small > nav a { display: block; font-size: .8rem; line-height: 2; }
18
+ body > footer > small > p { padding-top: var(--g3); border-top: 1px solid var(--border); }
21
19
  @media (max-width: 640px) {
22
20
  body > footer > small > nav { grid-template-columns: 1fr; gap: var(--g3); }
23
21
  }`;
@@ -1,11 +1,11 @@
1
1
  export const css = `body > header {
2
2
  position: sticky; top: 0; z-index: 50;
3
3
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(16px);
4
- border-bottom: 1px solid var(--line);
4
+ border-bottom: 1px solid var(--border);
5
5
  }
6
6
  body > header nav {
7
7
  max-width: var(--container); margin-inline: auto; padding-inline: var(--pad);
8
8
  height: 48px; display: flex; align-items: center; justify-content: space-between;
9
9
  }
10
- body > header nav a { color: var(--ink-2); font-size: var(--t-sm); font-weight: 500; }
11
- body > header nav a strong { font-size: var(--t-md); font-weight: 700; color: var(--ink); }`;
10
+ body > header nav a { color: var(--fg-muted); font-size: 13px; font-weight: 500; text-decoration: none; }
11
+ body > header nav a strong { font-size: 1rem; font-weight: 700; color: var(--fg); }`;
@@ -12,7 +12,7 @@ export interface LayoutProps {
12
12
  footerContent?: string;
13
13
  }
14
14
 
15
- const THEME_VERSION = '3.0.0';
15
+ const THEME_VERSION = '3.0.1';
16
16
 
17
17
  export function layout(props: LayoutProps, body: string): string {
18
18
  const {