stagecraft 0.1.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/AGENT.md +792 -0
- package/LICENSE +21 -0
- package/README.md +210 -0
- package/bin/cli.js +51 -0
- package/bin/export.js +137 -0
- package/bin/init.js +52 -0
- package/bin/lib/edit-ops.js +405 -0
- package/bin/serve.js +278 -0
- package/dist/stagecraft.bundle.css +4443 -0
- package/dist/stagecraft.bundle.js +7621 -0
- package/dist/themes/brand.bundle.css +5262 -0
- package/dist/themes/neon.bundle.css +5289 -0
- package/dist/themes/paper.bundle.css +5276 -0
- package/dist/themes/phosphor.bundle.css +4443 -0
- package/dist/themes/shopware.bundle.css +5850 -0
- package/examples/closing-card.js +74 -0
- package/examples/orchestration-graph.js +156 -0
- package/examples/terminal-log.js +109 -0
- package/examples/token-stream.js +96 -0
- package/examples/whoami.js +90 -0
- package/package.json +41 -0
- package/src/components/activity-list.js +75 -0
- package/src/components/agenda.js +79 -0
- package/src/components/bar-chart.js +162 -0
- package/src/components/before-after.js +135 -0
- package/src/components/bento.js +73 -0
- package/src/components/big-number.js +87 -0
- package/src/components/callout.js +75 -0
- package/src/components/checklist.js +81 -0
- package/src/components/code-block.js +141 -0
- package/src/components/code-diff.js +98 -0
- package/src/components/compare.js +85 -0
- package/src/components/counter.js +80 -0
- package/src/components/cta.js +69 -0
- package/src/components/cycle.js +146 -0
- package/src/components/definition.js +96 -0
- package/src/components/donut-chart.js +179 -0
- package/src/components/full-image.js +82 -0
- package/src/components/funnel.js +111 -0
- package/src/components/gauge.js +147 -0
- package/src/components/heatmap.js +141 -0
- package/src/components/image-grid.js +80 -0
- package/src/components/image-text.js +96 -0
- package/src/components/kinetic-text.js +72 -0
- package/src/components/kpi.js +106 -0
- package/src/components/line-chart.js +215 -0
- package/src/components/manifesto.js +104 -0
- package/src/components/marquee.js +63 -0
- package/src/components/matrix2x2.js +151 -0
- package/src/components/pillars.js +80 -0
- package/src/components/pricing.js +90 -0
- package/src/components/process-flow.js +133 -0
- package/src/components/progress.js +136 -0
- package/src/components/punchline.js +82 -0
- package/src/components/pyramid.js +107 -0
- package/src/components/qanda.js +60 -0
- package/src/components/quote.js +70 -0
- package/src/components/roadmap.js +130 -0
- package/src/components/section-card.js +45 -0
- package/src/components/shift-arrow.js +41 -0
- package/src/components/spark-line.js +147 -0
- package/src/components/spotlight.js +85 -0
- package/src/components/statement.js +106 -0
- package/src/components/stats.js +91 -0
- package/src/components/steps.js +83 -0
- package/src/components/swot.js +110 -0
- package/src/components/team-grid.js +87 -0
- package/src/components/testimonial.js +99 -0
- package/src/components/timeline.js +91 -0
- package/src/components/tip.js +63 -0
- package/src/components/venn.js +198 -0
- package/src/edit-mode.js +1256 -0
- package/src/engine.js +823 -0
- package/src/helpers.js +169 -0
- package/src/transitions.js +101 -0
- package/starter/index.html +40 -0
- package/starter/slides/00-title.js +12 -0
- package/starter/stagecraft.config.js +8 -0
- package/themes/brand/base.css +4 -0
- package/themes/brand/components-business.css +173 -0
- package/themes/brand/components-chart.css +65 -0
- package/themes/brand/components-content.css +126 -0
- package/themes/brand/components-data.css +162 -0
- package/themes/brand/components-diagram.css +115 -0
- package/themes/brand/components-layout.css +112 -0
- package/themes/brand/components.css +46 -0
- package/themes/brand/manifest.json +20 -0
- package/themes/brand/tokens.css +20 -0
- package/themes/brand/transitions.css +4 -0
- package/themes/neon/base.css +10 -0
- package/themes/neon/components-business.css +189 -0
- package/themes/neon/components-chart.css +70 -0
- package/themes/neon/components-content.css +112 -0
- package/themes/neon/components-data.css +160 -0
- package/themes/neon/components-diagram.css +109 -0
- package/themes/neon/components-layout.css +87 -0
- package/themes/neon/components.css +87 -0
- package/themes/neon/manifest.json +21 -0
- package/themes/neon/tokens.css +17 -0
- package/themes/neon/transitions.css +13 -0
- package/themes/paper/base.css +9 -0
- package/themes/paper/components-business.css +196 -0
- package/themes/paper/components-chart.css +74 -0
- package/themes/paper/components-content.css +108 -0
- package/themes/paper/components-data.css +168 -0
- package/themes/paper/components-diagram.css +89 -0
- package/themes/paper/components-layout.css +105 -0
- package/themes/paper/components.css +60 -0
- package/themes/paper/manifest.json +10 -0
- package/themes/paper/tokens.css +21 -0
- package/themes/paper/transitions.css +11 -0
- package/themes/phosphor/base.css +511 -0
- package/themes/phosphor/components-business.css +818 -0
- package/themes/phosphor/components-chart.css +415 -0
- package/themes/phosphor/components-content.css +530 -0
- package/themes/phosphor/components-data.css +824 -0
- package/themes/phosphor/components-diagram.css +427 -0
- package/themes/phosphor/components-layout.css +450 -0
- package/themes/phosphor/components.css +223 -0
- package/themes/phosphor/manifest.json +11 -0
- package/themes/phosphor/tokens.css +17 -0
- package/themes/phosphor/transitions.css +213 -0
- package/themes/shopware/base.css +94 -0
- package/themes/shopware/components-business.css +344 -0
- package/themes/shopware/components-chart.css +121 -0
- package/themes/shopware/components-content.css +169 -0
- package/themes/shopware/components-data.css +219 -0
- package/themes/shopware/components-diagram.css +129 -0
- package/themes/shopware/components-layout.css +166 -0
- package/themes/shopware/components.css +83 -0
- package/themes/shopware/manifest.json +21 -0
- package/themes/shopware/tokens.css +68 -0
- package/themes/shopware/transitions.css +22 -0
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
/* Stagecraft — Phosphor theme: transitions library
|
|
2
|
+
*
|
|
3
|
+
* The animations apply to anything carrying the tx-<name>-enter / tx-<name>-exit
|
|
4
|
+
* class, not just .slide elements — so previews in the edit-mode picker share
|
|
5
|
+
* the exact same motion as the real thing.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/* fade */
|
|
9
|
+
.tx-fade-enter { animation: tx-fade-enter 700ms cubic-bezier(0.16, 1, 0.3, 1) both; }
|
|
10
|
+
.tx-fade-exit { animation: tx-fade-exit 400ms ease-in both; }
|
|
11
|
+
@keyframes tx-fade-enter {
|
|
12
|
+
from { opacity: 0; transform: scale(0.985); }
|
|
13
|
+
to { opacity: 1; transform: scale(1); }
|
|
14
|
+
}
|
|
15
|
+
@keyframes tx-fade-exit {
|
|
16
|
+
from { opacity: 1; transform: scale(1); }
|
|
17
|
+
to { opacity: 0; transform: scale(1.01); }
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/* slide */
|
|
21
|
+
.tx-slide-enter { animation: tx-slide-enter 700ms cubic-bezier(0.16, 1, 0.3, 1) both; }
|
|
22
|
+
.tx-slide-exit { animation: tx-slide-exit 500ms ease-in both; }
|
|
23
|
+
@keyframes tx-slide-enter {
|
|
24
|
+
from { opacity: 0; transform: translateX(60px); }
|
|
25
|
+
to { opacity: 1; transform: translateX(0); }
|
|
26
|
+
}
|
|
27
|
+
@keyframes tx-slide-exit {
|
|
28
|
+
from { opacity: 1; transform: translateX(0); }
|
|
29
|
+
to { opacity: 0; transform: translateX(-60px); }
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/* dissolve */
|
|
33
|
+
.tx-dissolve-enter { animation: tx-dissolve-enter 1200ms ease-out both; }
|
|
34
|
+
.tx-dissolve-exit { animation: tx-dissolve-exit 1000ms ease-in both; }
|
|
35
|
+
@keyframes tx-dissolve-enter {
|
|
36
|
+
from { opacity: 0; filter: blur(8px); }
|
|
37
|
+
to { opacity: 1; filter: blur(0); }
|
|
38
|
+
}
|
|
39
|
+
@keyframes tx-dissolve-exit {
|
|
40
|
+
from { opacity: 1; filter: blur(0); }
|
|
41
|
+
to { opacity: 0; filter: blur(8px); }
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* glitch — phosphor flavor */
|
|
45
|
+
.tx-glitch-enter { animation: tx-glitch-enter 600ms steps(8, end) both; }
|
|
46
|
+
@keyframes tx-glitch-enter {
|
|
47
|
+
0% { opacity: 0; transform: translateX(0); filter: hue-rotate(0deg); }
|
|
48
|
+
20% { opacity: 0.6; transform: translateX(-3px); filter: hue-rotate(30deg) contrast(1.3); }
|
|
49
|
+
40% { opacity: 0.4; transform: translateX(4px); filter: hue-rotate(-20deg); }
|
|
50
|
+
60% { opacity: 0.8; transform: translateX(-1px); }
|
|
51
|
+
100% { opacity: 1; transform: translateX(0); filter: none; }
|
|
52
|
+
}
|
|
53
|
+
.tx-glitch-overlay {
|
|
54
|
+
position: absolute;
|
|
55
|
+
inset: 0;
|
|
56
|
+
pointer-events: none;
|
|
57
|
+
z-index: 50;
|
|
58
|
+
background:
|
|
59
|
+
repeating-linear-gradient(
|
|
60
|
+
0deg,
|
|
61
|
+
rgba(0, 255, 156, 0.04) 0,
|
|
62
|
+
rgba(0, 255, 156, 0.04) 1px,
|
|
63
|
+
transparent 1px,
|
|
64
|
+
transparent 4px
|
|
65
|
+
);
|
|
66
|
+
mix-blend-mode: screen;
|
|
67
|
+
animation: tx-glitch-overlay 600ms steps(6, end) both;
|
|
68
|
+
}
|
|
69
|
+
@keyframes tx-glitch-overlay {
|
|
70
|
+
0% { opacity: 0.9; }
|
|
71
|
+
50% { opacity: 0.5; transform: translateX(3px); }
|
|
72
|
+
100% { opacity: 0; transform: translateX(0); }
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/* wipe — masked reveal left-to-right */
|
|
76
|
+
.tx-wipe-enter {
|
|
77
|
+
animation: tx-wipe-enter 800ms cubic-bezier(0.16, 1, 0.3, 1) both;
|
|
78
|
+
clip-path: inset(0 100% 0 0);
|
|
79
|
+
}
|
|
80
|
+
@keyframes tx-wipe-enter {
|
|
81
|
+
from { opacity: 1; clip-path: inset(0 100% 0 0); }
|
|
82
|
+
to { opacity: 1; clip-path: inset(0 0% 0 0); }
|
|
83
|
+
}
|
|
84
|
+
.tx-wipe-exit { animation: tx-wipe-exit 500ms ease-in both; }
|
|
85
|
+
@keyframes tx-wipe-exit {
|
|
86
|
+
from { opacity: 1; clip-path: inset(0 0% 0 0); }
|
|
87
|
+
to { opacity: 1; clip-path: inset(0 0 0 100%); }
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* cut — picker-preview only. The real cut in the deck is instant (no class
|
|
91
|
+
* is added on enter, see src/transitions.js). This animation is just so the
|
|
92
|
+
* picker preview can demonstrate what cut means: 0% opacity for the first
|
|
93
|
+
* half of the hover, then a hard snap to 100% — no easing, no fade. */
|
|
94
|
+
.tx-cut-enter {
|
|
95
|
+
animation: tx-cut-enter 600ms steps(2, jump-none) both;
|
|
96
|
+
}
|
|
97
|
+
@keyframes tx-cut-enter {
|
|
98
|
+
from { opacity: 0; }
|
|
99
|
+
to { opacity: 1; }
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/* ============================================================================
|
|
103
|
+
* Phase 2 transitions
|
|
104
|
+
* ============================================================================ */
|
|
105
|
+
|
|
106
|
+
/* zoom-in: scales up from small while fading in */
|
|
107
|
+
.tx-zoom-in-enter { animation: tx-zoom-in-enter 700ms cubic-bezier(0.16, 1, 0.3, 1) both; }
|
|
108
|
+
.tx-zoom-in-exit { animation: tx-zoom-in-exit 400ms ease-in both; }
|
|
109
|
+
@keyframes tx-zoom-in-enter {
|
|
110
|
+
from { opacity: 0; transform: scale(0.6); }
|
|
111
|
+
to { opacity: 1; transform: scale(1); }
|
|
112
|
+
}
|
|
113
|
+
@keyframes tx-zoom-in-exit {
|
|
114
|
+
from { opacity: 1; transform: scale(1); }
|
|
115
|
+
to { opacity: 0; transform: scale(1.4); }
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/* zoom-out: opposite — starts large and shrinks in */
|
|
119
|
+
.tx-zoom-out-enter { animation: tx-zoom-out-enter 700ms cubic-bezier(0.16, 1, 0.3, 1) both; }
|
|
120
|
+
.tx-zoom-out-exit { animation: tx-zoom-out-exit 400ms ease-in both; }
|
|
121
|
+
@keyframes tx-zoom-out-enter {
|
|
122
|
+
from { opacity: 0; transform: scale(1.4); }
|
|
123
|
+
to { opacity: 1; transform: scale(1); }
|
|
124
|
+
}
|
|
125
|
+
@keyframes tx-zoom-out-exit {
|
|
126
|
+
from { opacity: 1; transform: scale(1); }
|
|
127
|
+
to { opacity: 0; transform: scale(0.6); }
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/* flip: 3D Y-axis rotation */
|
|
131
|
+
.tx-flip-enter {
|
|
132
|
+
animation: tx-flip-enter 900ms cubic-bezier(0.45, 0, 0.55, 1) both;
|
|
133
|
+
transform-style: preserve-3d;
|
|
134
|
+
perspective: 1200px;
|
|
135
|
+
}
|
|
136
|
+
.tx-flip-exit { animation: tx-flip-exit 500ms ease-in both; }
|
|
137
|
+
@keyframes tx-flip-enter {
|
|
138
|
+
from { opacity: 0; transform: perspective(1200px) rotateY(-90deg); }
|
|
139
|
+
60% { opacity: 1; }
|
|
140
|
+
to { opacity: 1; transform: perspective(1200px) rotateY(0deg); }
|
|
141
|
+
}
|
|
142
|
+
@keyframes tx-flip-exit {
|
|
143
|
+
from { opacity: 1; transform: perspective(1200px) rotateY(0deg); }
|
|
144
|
+
to { opacity: 0; transform: perspective(1200px) rotateY(90deg); }
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/* iris: circular reveal from center */
|
|
148
|
+
.tx-iris-enter {
|
|
149
|
+
animation: tx-iris-enter 900ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
150
|
+
}
|
|
151
|
+
.tx-iris-exit { animation: tx-iris-exit 500ms ease-in both; }
|
|
152
|
+
@keyframes tx-iris-enter {
|
|
153
|
+
from { opacity: 1; clip-path: circle(0% at 50% 50%); }
|
|
154
|
+
to { opacity: 1; clip-path: circle(80% at 50% 50%); }
|
|
155
|
+
}
|
|
156
|
+
@keyframes tx-iris-exit {
|
|
157
|
+
from { opacity: 1; clip-path: circle(80% at 50% 50%); }
|
|
158
|
+
to { opacity: 1; clip-path: circle(0% at 50% 50%); }
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
/* shutter: horizontal bands close → open */
|
|
162
|
+
.tx-shutter-enter {
|
|
163
|
+
animation: tx-shutter-enter 800ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
164
|
+
}
|
|
165
|
+
@keyframes tx-shutter-enter {
|
|
166
|
+
0% { opacity: 0; clip-path: polygon(0 0, 100% 0, 100% 8%, 0 8%, 0 17%, 100% 17%, 100% 25%, 0 25%, 0 34%, 100% 34%, 100% 42%, 0 42%, 0 50%, 100% 50%, 100% 58%, 0 58%, 0 66%, 100% 66%, 100% 75%, 0 75%, 0 83%, 100% 83%, 100% 92%, 0 92%); }
|
|
167
|
+
100% { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
|
|
168
|
+
}
|
|
169
|
+
.tx-shutter-exit { animation: tx-fade-exit 500ms ease-in both; }
|
|
170
|
+
|
|
171
|
+
/* push: pushes in horizontally, like slide but stronger */
|
|
172
|
+
.tx-push-enter { animation: tx-push-enter 800ms cubic-bezier(0.16, 1, 0.3, 1) both; }
|
|
173
|
+
.tx-push-exit { animation: tx-push-exit 800ms cubic-bezier(0.7, 0, 0.84, 0) both; }
|
|
174
|
+
@keyframes tx-push-enter {
|
|
175
|
+
from { opacity: 1; transform: translateX(100%); }
|
|
176
|
+
to { opacity: 1; transform: translateX(0); }
|
|
177
|
+
}
|
|
178
|
+
@keyframes tx-push-exit {
|
|
179
|
+
from { opacity: 1; transform: translateX(0); }
|
|
180
|
+
to { opacity: 1; transform: translateX(-100%); }
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/* typewriter: wide → narrow reveal, like a CRT power-on */
|
|
184
|
+
.tx-typewriter-enter {
|
|
185
|
+
animation: tx-typewriter-enter 900ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
|
186
|
+
transform-origin: center;
|
|
187
|
+
}
|
|
188
|
+
@keyframes tx-typewriter-enter {
|
|
189
|
+
0% { opacity: 0; transform: scaleX(0); }
|
|
190
|
+
40% { opacity: 1; transform: scaleX(1); transform-origin: center; }
|
|
191
|
+
100% { opacity: 1; transform: scaleX(1); }
|
|
192
|
+
}
|
|
193
|
+
.tx-typewriter-exit {
|
|
194
|
+
animation: tx-typewriter-exit 300ms ease-in both;
|
|
195
|
+
}
|
|
196
|
+
@keyframes tx-typewriter-exit {
|
|
197
|
+
from { opacity: 1; transform: scaleY(1); }
|
|
198
|
+
to { opacity: 0; transform: scaleY(0); }
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/* shatter: many tiny grid-shifts then resolve */
|
|
202
|
+
.tx-shatter-enter {
|
|
203
|
+
animation: tx-shatter-enter 900ms steps(10, jump-end) both;
|
|
204
|
+
filter: contrast(1) blur(0);
|
|
205
|
+
}
|
|
206
|
+
@keyframes tx-shatter-enter {
|
|
207
|
+
0% { opacity: 0; filter: blur(20px) saturate(0.2); transform: translate(-4px, 2px) skew(2deg); }
|
|
208
|
+
20% { opacity: 0.4; filter: blur(8px) saturate(0.4); transform: translate(3px, -1px) skew(-1deg); }
|
|
209
|
+
40% { opacity: 0.7; filter: blur(3px); transform: translate(-1px, 1px); }
|
|
210
|
+
60% { opacity: 0.9; filter: blur(1px); transform: translate(1px, 0); }
|
|
211
|
+
100% { opacity: 1; filter: none; transform: none; }
|
|
212
|
+
}
|
|
213
|
+
.tx-shatter-exit { animation: tx-fade-exit 500ms ease-in both; }
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/* Shopware theme — base styles
|
|
2
|
+
* Imports phosphor's base for the engine chrome and overrides what doesn't
|
|
3
|
+
* fit a clean, light, product-marketing aesthetic.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
@import url('../phosphor/base.css');
|
|
7
|
+
|
|
8
|
+
/* No glow on caret; subtle brand accent on the cursor */
|
|
9
|
+
:root[data-theme="shopware"] .caret {
|
|
10
|
+
background: var(--accent);
|
|
11
|
+
box-shadow: none;
|
|
12
|
+
animation-timing-function: steps(2, end);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/* Pre-label dot: solid brand without animation pulse */
|
|
16
|
+
:root[data-theme="shopware"] .pre-label .dot { animation: none; }
|
|
17
|
+
:root[data-theme="shopware"] .pre-label { color: var(--dim); }
|
|
18
|
+
|
|
19
|
+
/* UI chrome — Inter throughout, brand-colored counter */
|
|
20
|
+
:root[data-theme="shopware"] .ui { font-family: var(--display); }
|
|
21
|
+
:root[data-theme="shopware"] .ui-counter { color: var(--fg); font-weight: 500; }
|
|
22
|
+
:root[data-theme="shopware"] .ui-counter .slash,
|
|
23
|
+
:root[data-theme="shopware"] .ui-counter .total { color: var(--dim); }
|
|
24
|
+
|
|
25
|
+
/* Storyboard dot indicators — flat */
|
|
26
|
+
:root[data-theme="shopware"] .ui-dots .dot {
|
|
27
|
+
background: var(--border-secondary);
|
|
28
|
+
}
|
|
29
|
+
:root[data-theme="shopware"] .ui-dots .dot.active {
|
|
30
|
+
background: var(--accent);
|
|
31
|
+
box-shadow: none;
|
|
32
|
+
}
|
|
33
|
+
:root[data-theme="shopware"] .ui-dots .dot.past { background: var(--dim); }
|
|
34
|
+
|
|
35
|
+
/* Welcome */
|
|
36
|
+
:root[data-theme="shopware"] .welcome { background: var(--bg); }
|
|
37
|
+
:root[data-theme="shopware"] .welcome .key-prompt { color: var(--dim); }
|
|
38
|
+
:root[data-theme="shopware"] .welcome h1 { color: var(--fg); font-weight: 500; }
|
|
39
|
+
:root[data-theme="shopware"] .welcome .by { color: var(--dim); }
|
|
40
|
+
|
|
41
|
+
/* Storyboard tiles — white surface with subtle brand glow on active */
|
|
42
|
+
:root[data-theme="shopware"] .overview { background: var(--bg-elevated); }
|
|
43
|
+
:root[data-theme="shopware"] .overview-header {
|
|
44
|
+
background: rgba(250, 251, 254, 0.95);
|
|
45
|
+
border-bottom: 1px solid var(--border-primary);
|
|
46
|
+
color: var(--dim);
|
|
47
|
+
}
|
|
48
|
+
:root[data-theme="shopware"] .overview-header .left strong { color: var(--fg); }
|
|
49
|
+
:root[data-theme="shopware"] .tile {
|
|
50
|
+
background: var(--bg);
|
|
51
|
+
border: 1px solid var(--border-primary);
|
|
52
|
+
border-radius: var(--radius-md);
|
|
53
|
+
overflow: hidden;
|
|
54
|
+
}
|
|
55
|
+
:root[data-theme="shopware"] .tile:hover {
|
|
56
|
+
border-color: var(--accent);
|
|
57
|
+
transform: translateY(-2px);
|
|
58
|
+
box-shadow: var(--shadow-md);
|
|
59
|
+
}
|
|
60
|
+
:root[data-theme="shopware"] .tile.current {
|
|
61
|
+
border-color: var(--accent);
|
|
62
|
+
box-shadow: var(--shadow-brand);
|
|
63
|
+
}
|
|
64
|
+
:root[data-theme="shopware"] .tile-num {
|
|
65
|
+
background: rgba(255, 255, 255, 0.92);
|
|
66
|
+
color: var(--dim);
|
|
67
|
+
font-family: var(--display);
|
|
68
|
+
}
|
|
69
|
+
:root[data-theme="shopware"] .tile.current .tile-num { color: var(--accent); }
|
|
70
|
+
:root[data-theme="shopware"] .tile-label {
|
|
71
|
+
background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 40%, rgba(255, 255, 255, 0));
|
|
72
|
+
color: var(--fg);
|
|
73
|
+
font-family: var(--display);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* Edit-mode ring — soft brand glow on light bg */
|
|
77
|
+
:root[data-theme="shopware"] body.edit-mode #stage::after {
|
|
78
|
+
border-color: var(--accent);
|
|
79
|
+
box-shadow: inset 0 0 30px var(--accent-soft);
|
|
80
|
+
opacity: 0.35;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/* Hero / display typography — Inter, tighter tracking for a product feel */
|
|
84
|
+
:root[data-theme="shopware"] .hero,
|
|
85
|
+
:root[data-theme="shopware"] .hero-xl {
|
|
86
|
+
font-family: var(--display);
|
|
87
|
+
font-weight: 600;
|
|
88
|
+
letter-spacing: -0.02em;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* Material icons size token */
|
|
92
|
+
:root[data-theme="shopware"] .material-symbols-outlined {
|
|
93
|
+
font-variation-settings: 'opsz' 24, 'wght' 400, 'FILL' 0, 'GRAD' 0;
|
|
94
|
+
}
|
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
/* Stagecraft — Shopware theme: business / marketing component overrides. */
|
|
2
|
+
@import url('../phosphor/components-business.css');
|
|
3
|
+
|
|
4
|
+
/* ---------------------------------------------------------------------------
|
|
5
|
+
* Pricing — white tiers, featured pops with --shadow-brand
|
|
6
|
+
* ------------------------------------------------------------------------- */
|
|
7
|
+
:root[data-theme="shopware"] .pricing-tier {
|
|
8
|
+
background: var(--bg);
|
|
9
|
+
border: 1px solid var(--border-primary);
|
|
10
|
+
border-radius: var(--radius-md);
|
|
11
|
+
box-shadow: var(--shadow-sm);
|
|
12
|
+
transition: opacity 700ms ease-out, transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
|
|
13
|
+
border-color 200ms ease, box-shadow 200ms ease;
|
|
14
|
+
}
|
|
15
|
+
:root[data-theme="shopware"] .pricing-tier:hover {
|
|
16
|
+
border-color: var(--accent);
|
|
17
|
+
box-shadow: var(--shadow-md);
|
|
18
|
+
}
|
|
19
|
+
:root[data-theme="shopware"] .pricing-tier--featured {
|
|
20
|
+
border: 2px solid var(--accent);
|
|
21
|
+
box-shadow: var(--shadow-brand);
|
|
22
|
+
transform: scale(1.02);
|
|
23
|
+
}
|
|
24
|
+
:root[data-theme="shopware"] .pricing-tier--featured.in {
|
|
25
|
+
transform: translateY(0) scale(1.02);
|
|
26
|
+
}
|
|
27
|
+
:root[data-theme="shopware"] .pricing-badge {
|
|
28
|
+
background: var(--accent);
|
|
29
|
+
color: #ffffff;
|
|
30
|
+
box-shadow: none;
|
|
31
|
+
border-radius: var(--radius-pill);
|
|
32
|
+
font-family: var(--display);
|
|
33
|
+
font-weight: 600;
|
|
34
|
+
letter-spacing: 0.02em;
|
|
35
|
+
}
|
|
36
|
+
:root[data-theme="shopware"] .pricing-name {
|
|
37
|
+
color: var(--fg);
|
|
38
|
+
font-family: var(--display);
|
|
39
|
+
font-weight: 600;
|
|
40
|
+
}
|
|
41
|
+
:root[data-theme="shopware"] .pricing-tier--featured .pricing-name { color: var(--accent); }
|
|
42
|
+
:root[data-theme="shopware"] .pricing-price {
|
|
43
|
+
color: var(--fg);
|
|
44
|
+
font-family: var(--display);
|
|
45
|
+
font-weight: 600;
|
|
46
|
+
text-shadow: none;
|
|
47
|
+
}
|
|
48
|
+
:root[data-theme="shopware"] .pricing-tier--featured .pricing-price {
|
|
49
|
+
color: var(--accent);
|
|
50
|
+
text-shadow: none;
|
|
51
|
+
}
|
|
52
|
+
:root[data-theme="shopware"] .pricing-period { color: var(--dim); }
|
|
53
|
+
:root[data-theme="shopware"] .pricing-feature { color: var(--fg); }
|
|
54
|
+
:root[data-theme="shopware"] .pricing-check { color: var(--accent); }
|
|
55
|
+
:root[data-theme="shopware"] .pricing-cta {
|
|
56
|
+
background: transparent;
|
|
57
|
+
border: 1px solid var(--accent);
|
|
58
|
+
color: var(--accent);
|
|
59
|
+
border-radius: var(--radius-pill);
|
|
60
|
+
font-family: var(--display);
|
|
61
|
+
font-weight: 600;
|
|
62
|
+
}
|
|
63
|
+
:root[data-theme="shopware"] .pricing-tier--featured .pricing-cta {
|
|
64
|
+
background: var(--accent);
|
|
65
|
+
color: #ffffff;
|
|
66
|
+
border-color: var(--accent);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* ---------------------------------------------------------------------------
|
|
70
|
+
* Testimonial — sans, brand quote mark
|
|
71
|
+
* ------------------------------------------------------------------------- */
|
|
72
|
+
:root[data-theme="shopware"] .testimonial-photo-wrap {
|
|
73
|
+
background: var(--bg);
|
|
74
|
+
border: 1px solid var(--border-primary);
|
|
75
|
+
border-radius: 999px;
|
|
76
|
+
box-shadow: var(--shadow-md);
|
|
77
|
+
}
|
|
78
|
+
:root[data-theme="shopware"] .testimonial-mark {
|
|
79
|
+
color: var(--accent);
|
|
80
|
+
text-shadow: none;
|
|
81
|
+
font-family: var(--display);
|
|
82
|
+
font-weight: 600;
|
|
83
|
+
}
|
|
84
|
+
:root[data-theme="shopware"] .testimonial-quote {
|
|
85
|
+
font-family: var(--display);
|
|
86
|
+
font-style: normal;
|
|
87
|
+
font-weight: 500;
|
|
88
|
+
letter-spacing: -0.015em;
|
|
89
|
+
color: var(--fg);
|
|
90
|
+
}
|
|
91
|
+
:root[data-theme="shopware"] .testimonial-author { color: var(--fg); font-family: var(--display); font-weight: 600; }
|
|
92
|
+
:root[data-theme="shopware"] .testimonial-affil { color: var(--dim); }
|
|
93
|
+
:root[data-theme="shopware"] .testimonial-sep { color: var(--border-primary); }
|
|
94
|
+
|
|
95
|
+
/* ---------------------------------------------------------------------------
|
|
96
|
+
* TeamGrid — white card, photo on elevated grey
|
|
97
|
+
* ------------------------------------------------------------------------- */
|
|
98
|
+
:root[data-theme="shopware"] .team-card {
|
|
99
|
+
background: var(--bg);
|
|
100
|
+
border: 1px solid var(--border-primary);
|
|
101
|
+
border-radius: var(--radius-md);
|
|
102
|
+
box-shadow: var(--shadow-sm);
|
|
103
|
+
transition: opacity 700ms ease-out, transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
|
|
104
|
+
border-color 200ms ease, box-shadow 200ms ease;
|
|
105
|
+
}
|
|
106
|
+
:root[data-theme="shopware"] .team-card:hover {
|
|
107
|
+
border-color: var(--accent);
|
|
108
|
+
box-shadow: var(--shadow-md);
|
|
109
|
+
}
|
|
110
|
+
:root[data-theme="shopware"] .team-photo-wrap {
|
|
111
|
+
background: var(--bg-elevated);
|
|
112
|
+
border: 1px solid var(--border-primary);
|
|
113
|
+
}
|
|
114
|
+
:root[data-theme="shopware"] .team-name { color: var(--fg); font-family: var(--display); font-weight: 600; }
|
|
115
|
+
:root[data-theme="shopware"] .team-role { color: var(--accent); font-family: var(--display); font-weight: 500; }
|
|
116
|
+
:root[data-theme="shopware"] .team-bio { color: var(--dim); }
|
|
117
|
+
:root[data-theme="shopware"] .team-social-icon { color: var(--dim); }
|
|
118
|
+
:root[data-theme="shopware"] .team-social-icon:hover { color: var(--accent); }
|
|
119
|
+
|
|
120
|
+
/* ---------------------------------------------------------------------------
|
|
121
|
+
* Agenda
|
|
122
|
+
* ------------------------------------------------------------------------- */
|
|
123
|
+
:root[data-theme="shopware"] .agenda-rail { background: var(--border-primary); }
|
|
124
|
+
:root[data-theme="shopware"] .agenda-dot {
|
|
125
|
+
background: var(--bg);
|
|
126
|
+
border: 2px solid var(--accent);
|
|
127
|
+
box-shadow: none;
|
|
128
|
+
}
|
|
129
|
+
:root[data-theme="shopware"] .agenda-dot .material-symbols-outlined { color: var(--accent); }
|
|
130
|
+
:root[data-theme="shopware"] .agenda-time { color: var(--dim); font-family: var(--display); font-variant-numeric: tabular-nums; }
|
|
131
|
+
:root[data-theme="shopware"] .agenda-label { color: var(--fg); font-family: var(--display); font-weight: 600; }
|
|
132
|
+
:root[data-theme="shopware"] .agenda-duration { color: var(--dim); }
|
|
133
|
+
|
|
134
|
+
/* ---------------------------------------------------------------------------
|
|
135
|
+
* Checklist
|
|
136
|
+
* ------------------------------------------------------------------------- */
|
|
137
|
+
:root[data-theme="shopware"] .checklist-item {
|
|
138
|
+
background: var(--bg);
|
|
139
|
+
border: 1px solid var(--border-primary);
|
|
140
|
+
border-radius: var(--radius-md);
|
|
141
|
+
box-shadow: var(--shadow-sm);
|
|
142
|
+
}
|
|
143
|
+
:root[data-theme="shopware"] .checklist-item.is-done {
|
|
144
|
+
border-color: color-mix(in srgb, var(--accent) 35%, var(--border-primary));
|
|
145
|
+
background: color-mix(in srgb, var(--accent-soft) 60%, var(--bg));
|
|
146
|
+
}
|
|
147
|
+
:root[data-theme="shopware"] .checklist-box { color: var(--dim); }
|
|
148
|
+
:root[data-theme="shopware"] .checklist-item.is-done .checklist-box {
|
|
149
|
+
color: var(--accent);
|
|
150
|
+
text-shadow: none;
|
|
151
|
+
}
|
|
152
|
+
:root[data-theme="shopware"] .checklist-text { color: var(--fg); }
|
|
153
|
+
:root[data-theme="shopware"] .checklist-item.is-done .checklist-text { color: var(--dim); }
|
|
154
|
+
:root[data-theme="shopware"] .checklist-sub { color: var(--dim); }
|
|
155
|
+
|
|
156
|
+
/* ---------------------------------------------------------------------------
|
|
157
|
+
* Steps
|
|
158
|
+
* ------------------------------------------------------------------------- */
|
|
159
|
+
:root[data-theme="shopware"] .step-card {
|
|
160
|
+
background: var(--bg);
|
|
161
|
+
border: 1px solid var(--border-primary);
|
|
162
|
+
border-radius: var(--radius-md);
|
|
163
|
+
box-shadow: var(--shadow-sm);
|
|
164
|
+
transition: opacity 700ms ease-out, transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
|
|
165
|
+
border-color 200ms ease, box-shadow 200ms ease;
|
|
166
|
+
}
|
|
167
|
+
:root[data-theme="shopware"] .step-card:hover {
|
|
168
|
+
border-color: var(--accent);
|
|
169
|
+
box-shadow: var(--shadow-md);
|
|
170
|
+
}
|
|
171
|
+
:root[data-theme="shopware"] .step-numeral {
|
|
172
|
+
text-shadow: none;
|
|
173
|
+
color: var(--accent);
|
|
174
|
+
font-family: var(--display);
|
|
175
|
+
font-weight: 700;
|
|
176
|
+
letter-spacing: -0.04em;
|
|
177
|
+
}
|
|
178
|
+
:root[data-theme="shopware"] .step-icon { color: var(--accent); }
|
|
179
|
+
:root[data-theme="shopware"] .step-label { color: var(--fg); font-family: var(--display); font-weight: 600; }
|
|
180
|
+
:root[data-theme="shopware"] .step-body { color: var(--dim); }
|
|
181
|
+
|
|
182
|
+
/* ---------------------------------------------------------------------------
|
|
183
|
+
* CTA — pill button, brand fill, --shadow-brand when accent
|
|
184
|
+
* ------------------------------------------------------------------------- */
|
|
185
|
+
:root[data-theme="shopware"] .cta {
|
|
186
|
+
background: var(--bg);
|
|
187
|
+
border: 1px solid var(--border-primary);
|
|
188
|
+
border-radius: var(--radius-md);
|
|
189
|
+
box-shadow: var(--shadow-sm);
|
|
190
|
+
}
|
|
191
|
+
:root[data-theme="shopware"] .cta--accent {
|
|
192
|
+
border-color: var(--accent);
|
|
193
|
+
background:
|
|
194
|
+
linear-gradient(135deg, var(--accent-soft), transparent 55%),
|
|
195
|
+
var(--bg);
|
|
196
|
+
box-shadow: var(--shadow-brand);
|
|
197
|
+
}
|
|
198
|
+
:root[data-theme="shopware"] .cta-headline {
|
|
199
|
+
color: var(--fg);
|
|
200
|
+
font-family: var(--display);
|
|
201
|
+
font-weight: 600;
|
|
202
|
+
letter-spacing: -0.02em;
|
|
203
|
+
}
|
|
204
|
+
:root[data-theme="shopware"] .cta--accent .cta-headline { color: var(--fg); }
|
|
205
|
+
:root[data-theme="shopware"] .cta-body { color: var(--dim); }
|
|
206
|
+
:root[data-theme="shopware"] .cta-button {
|
|
207
|
+
background: var(--accent);
|
|
208
|
+
color: #ffffff;
|
|
209
|
+
border: 1px solid var(--accent);
|
|
210
|
+
border-radius: var(--radius-pill);
|
|
211
|
+
font-family: var(--display);
|
|
212
|
+
font-weight: 600;
|
|
213
|
+
letter-spacing: 0.01em;
|
|
214
|
+
box-shadow: none;
|
|
215
|
+
transition: background 160ms ease, box-shadow 200ms ease, transform 160ms ease;
|
|
216
|
+
}
|
|
217
|
+
:root[data-theme="shopware"] .cta-button:hover {
|
|
218
|
+
background: var(--accent-hover);
|
|
219
|
+
}
|
|
220
|
+
:root[data-theme="shopware"] .cta--accent .cta-button {
|
|
221
|
+
background: var(--accent);
|
|
222
|
+
color: #ffffff;
|
|
223
|
+
box-shadow: var(--shadow-brand);
|
|
224
|
+
}
|
|
225
|
+
:root[data-theme="shopware"] .cta--accent .cta-button:hover {
|
|
226
|
+
background: var(--accent-hover);
|
|
227
|
+
box-shadow: var(--shadow-brand);
|
|
228
|
+
}
|
|
229
|
+
:root[data-theme="shopware"] .cta-hint { color: var(--dim); }
|
|
230
|
+
|
|
231
|
+
/* ---------------------------------------------------------------------------
|
|
232
|
+
* Callout — colored left border, *-soft tint
|
|
233
|
+
* ------------------------------------------------------------------------- */
|
|
234
|
+
:root[data-theme="shopware"] .callout {
|
|
235
|
+
background: var(--bg);
|
|
236
|
+
border: 1px solid var(--border-primary);
|
|
237
|
+
border-left: 4px solid var(--border-secondary);
|
|
238
|
+
border-radius: var(--radius-md);
|
|
239
|
+
box-shadow: var(--shadow-sm);
|
|
240
|
+
}
|
|
241
|
+
:root[data-theme="shopware"] .callout-heading { color: var(--fg); font-family: var(--display); font-weight: 600; }
|
|
242
|
+
:root[data-theme="shopware"] .callout-text { color: var(--dim); }
|
|
243
|
+
|
|
244
|
+
:root[data-theme="shopware"] .callout--info {
|
|
245
|
+
border-left-color: var(--blue);
|
|
246
|
+
background: linear-gradient(90deg, var(--blue-soft), transparent 45%), var(--bg);
|
|
247
|
+
}
|
|
248
|
+
:root[data-theme="shopware"] .callout--info .callout-icon,
|
|
249
|
+
:root[data-theme="shopware"] .callout--info .callout-heading { color: var(--blue); }
|
|
250
|
+
|
|
251
|
+
:root[data-theme="shopware"] .callout--tip {
|
|
252
|
+
border-left-color: var(--accent);
|
|
253
|
+
background: linear-gradient(90deg, var(--accent-soft), transparent 45%), var(--bg);
|
|
254
|
+
}
|
|
255
|
+
:root[data-theme="shopware"] .callout--tip .callout-icon,
|
|
256
|
+
:root[data-theme="shopware"] .callout--tip .callout-heading { color: var(--accent); }
|
|
257
|
+
|
|
258
|
+
:root[data-theme="shopware"] .callout--warning {
|
|
259
|
+
border-left-color: var(--amber);
|
|
260
|
+
background: linear-gradient(90deg, var(--amber-soft), transparent 45%), var(--bg);
|
|
261
|
+
}
|
|
262
|
+
:root[data-theme="shopware"] .callout--warning .callout-icon,
|
|
263
|
+
:root[data-theme="shopware"] .callout--warning .callout-heading { color: var(--amber); }
|
|
264
|
+
|
|
265
|
+
:root[data-theme="shopware"] .callout--danger {
|
|
266
|
+
border-left-color: var(--red);
|
|
267
|
+
background: linear-gradient(90deg, var(--red-soft), transparent 45%), var(--bg);
|
|
268
|
+
}
|
|
269
|
+
:root[data-theme="shopware"] .callout--danger .callout-icon,
|
|
270
|
+
:root[data-theme="shopware"] .callout--danger .callout-heading { color: var(--red); }
|
|
271
|
+
|
|
272
|
+
:root[data-theme="shopware"] .callout--success {
|
|
273
|
+
border-left-color: var(--green);
|
|
274
|
+
background: linear-gradient(90deg, var(--green-soft), transparent 50%), var(--bg);
|
|
275
|
+
}
|
|
276
|
+
:root[data-theme="shopware"] .callout--success .callout-icon,
|
|
277
|
+
:root[data-theme="shopware"] .callout--success .callout-heading { color: var(--green); }
|
|
278
|
+
:root[data-theme="shopware"] .callout--success .callout-icon { text-shadow: none; }
|
|
279
|
+
|
|
280
|
+
/* ---------------------------------------------------------------------------
|
|
281
|
+
* Tip
|
|
282
|
+
* ------------------------------------------------------------------------- */
|
|
283
|
+
:root[data-theme="shopware"] .tip {
|
|
284
|
+
background: var(--bg);
|
|
285
|
+
border: 1px solid var(--border-primary);
|
|
286
|
+
border-radius: var(--radius-md);
|
|
287
|
+
box-shadow: var(--shadow-sm);
|
|
288
|
+
}
|
|
289
|
+
:root[data-theme="shopware"] .tip-icon { color: var(--accent); }
|
|
290
|
+
:root[data-theme="shopware"] .tip-body { color: var(--fg); }
|
|
291
|
+
|
|
292
|
+
:root[data-theme="shopware"] .tip--info { border-color: color-mix(in srgb, var(--blue) 40%, var(--border-primary)); background: linear-gradient(135deg, var(--blue-soft), transparent 60%), var(--bg); }
|
|
293
|
+
:root[data-theme="shopware"] .tip--info .tip-icon { color: var(--blue); }
|
|
294
|
+
:root[data-theme="shopware"] .tip--tip { border-color: color-mix(in srgb, var(--accent) 40%, var(--border-primary)); background: linear-gradient(135deg, var(--accent-soft), transparent 60%), var(--bg); }
|
|
295
|
+
:root[data-theme="shopware"] .tip--tip .tip-icon { color: var(--accent); }
|
|
296
|
+
:root[data-theme="shopware"] .tip--warning { border-color: color-mix(in srgb, var(--amber) 45%, var(--border-primary)); background: linear-gradient(135deg, var(--amber-soft), transparent 60%), var(--bg); }
|
|
297
|
+
:root[data-theme="shopware"] .tip--warning .tip-icon { color: var(--amber); }
|
|
298
|
+
:root[data-theme="shopware"] .tip--danger { border-color: color-mix(in srgb, var(--red) 45%, var(--border-primary)); background: linear-gradient(135deg, var(--red-soft), transparent 60%), var(--bg); }
|
|
299
|
+
:root[data-theme="shopware"] .tip--danger .tip-icon { color: var(--red); }
|
|
300
|
+
:root[data-theme="shopware"] .tip--success { border-color: color-mix(in srgb, var(--green) 45%, var(--border-primary)); background: linear-gradient(135deg, var(--green-soft), transparent 60%), var(--bg); }
|
|
301
|
+
:root[data-theme="shopware"] .tip--success .tip-icon { color: var(--green); text-shadow: none; }
|
|
302
|
+
|
|
303
|
+
/* ---------------------------------------------------------------------------
|
|
304
|
+
* BeforeAfter
|
|
305
|
+
* ------------------------------------------------------------------------- */
|
|
306
|
+
:root[data-theme="shopware"] .ba-col {
|
|
307
|
+
background: var(--bg);
|
|
308
|
+
border: 1px solid var(--border-primary);
|
|
309
|
+
border-radius: var(--radius-md);
|
|
310
|
+
box-shadow: var(--shadow-sm);
|
|
311
|
+
}
|
|
312
|
+
:root[data-theme="shopware"] .ba-col.ba-after {
|
|
313
|
+
border-color: var(--accent);
|
|
314
|
+
box-shadow: var(--shadow-md);
|
|
315
|
+
}
|
|
316
|
+
:root[data-theme="shopware"] .ba-arrow {
|
|
317
|
+
color: var(--accent);
|
|
318
|
+
text-shadow: none;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
:root[data-theme="shopware"] .before-after--image {
|
|
322
|
+
background: var(--bg);
|
|
323
|
+
border: 1px solid var(--border-primary);
|
|
324
|
+
border-radius: var(--radius-md);
|
|
325
|
+
box-shadow: var(--shadow-sm);
|
|
326
|
+
}
|
|
327
|
+
:root[data-theme="shopware"] .ba-tag {
|
|
328
|
+
background: rgba(255, 255, 255, 0.92);
|
|
329
|
+
border: 1px solid var(--border-primary);
|
|
330
|
+
color: var(--fg);
|
|
331
|
+
border-radius: var(--radius-pill);
|
|
332
|
+
font-family: var(--display);
|
|
333
|
+
font-weight: 600;
|
|
334
|
+
}
|
|
335
|
+
:root[data-theme="shopware"] .ba-tag--accent {
|
|
336
|
+
color: #ffffff;
|
|
337
|
+
background: var(--accent);
|
|
338
|
+
border-color: var(--accent);
|
|
339
|
+
box-shadow: none;
|
|
340
|
+
}
|
|
341
|
+
:root[data-theme="shopware"] .before-after--image .ba-divider {
|
|
342
|
+
background: var(--accent);
|
|
343
|
+
box-shadow: none;
|
|
344
|
+
}
|