@forwardimpact/pathway 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/LICENSE +201 -0
- package/README.md +104 -0
- package/app/commands/agent.js +430 -0
- package/app/commands/behaviour.js +61 -0
- package/app/commands/command-factory.js +211 -0
- package/app/commands/discipline.js +58 -0
- package/app/commands/driver.js +94 -0
- package/app/commands/grade.js +60 -0
- package/app/commands/index.js +20 -0
- package/app/commands/init.js +67 -0
- package/app/commands/interview.js +68 -0
- package/app/commands/job.js +157 -0
- package/app/commands/progress.js +77 -0
- package/app/commands/questions.js +179 -0
- package/app/commands/serve.js +143 -0
- package/app/commands/site.js +121 -0
- package/app/commands/skill.js +76 -0
- package/app/commands/stage.js +129 -0
- package/app/commands/track.js +70 -0
- package/app/components/action-buttons.js +66 -0
- package/app/components/behaviour-profile.js +53 -0
- package/app/components/builder.js +341 -0
- package/app/components/card.js +98 -0
- package/app/components/checklist.js +145 -0
- package/app/components/comparison-radar.js +237 -0
- package/app/components/detail.js +230 -0
- package/app/components/error-page.js +72 -0
- package/app/components/grid.js +109 -0
- package/app/components/list.js +120 -0
- package/app/components/modifier-table.js +142 -0
- package/app/components/nav.js +64 -0
- package/app/components/progression-table.js +320 -0
- package/app/components/radar-chart.js +102 -0
- package/app/components/skill-matrix.js +97 -0
- package/app/css/base.css +56 -0
- package/app/css/bundles/app.css +40 -0
- package/app/css/bundles/handout.css +43 -0
- package/app/css/bundles/slides.css +40 -0
- package/app/css/components/badges.css +215 -0
- package/app/css/components/buttons.css +101 -0
- package/app/css/components/forms.css +105 -0
- package/app/css/components/layout.css +209 -0
- package/app/css/components/nav.css +166 -0
- package/app/css/components/progress.css +166 -0
- package/app/css/components/states.css +82 -0
- package/app/css/components/surfaces.css +243 -0
- package/app/css/components/tables.css +362 -0
- package/app/css/components/typography.css +122 -0
- package/app/css/components/utilities.css +41 -0
- package/app/css/pages/agent-builder.css +391 -0
- package/app/css/pages/assessment-results.css +453 -0
- package/app/css/pages/detail.css +59 -0
- package/app/css/pages/interview-builder.css +148 -0
- package/app/css/pages/job-builder.css +134 -0
- package/app/css/pages/landing.css +92 -0
- package/app/css/pages/lifecycle.css +118 -0
- package/app/css/pages/progress-builder.css +274 -0
- package/app/css/pages/self-assessment.css +502 -0
- package/app/css/reset.css +50 -0
- package/app/css/tokens.css +153 -0
- package/app/css/views/handout.css +30 -0
- package/app/css/views/print.css +608 -0
- package/app/css/views/slide-animations.css +113 -0
- package/app/css/views/slide-base.css +330 -0
- package/app/css/views/slide-sections.css +597 -0
- package/app/css/views/slide-tables.css +275 -0
- package/app/formatters/agent/dom.js +540 -0
- package/app/formatters/agent/profile.js +133 -0
- package/app/formatters/agent/skill.js +58 -0
- package/app/formatters/behaviour/dom.js +91 -0
- package/app/formatters/behaviour/markdown.js +54 -0
- package/app/formatters/behaviour/shared.js +64 -0
- package/app/formatters/discipline/dom.js +187 -0
- package/app/formatters/discipline/markdown.js +87 -0
- package/app/formatters/discipline/shared.js +131 -0
- package/app/formatters/driver/dom.js +103 -0
- package/app/formatters/driver/shared.js +92 -0
- package/app/formatters/grade/dom.js +208 -0
- package/app/formatters/grade/markdown.js +94 -0
- package/app/formatters/grade/shared.js +86 -0
- package/app/formatters/index.js +50 -0
- package/app/formatters/interview/dom.js +97 -0
- package/app/formatters/interview/markdown.js +66 -0
- package/app/formatters/interview/shared.js +332 -0
- package/app/formatters/job/description.js +176 -0
- package/app/formatters/job/dom.js +411 -0
- package/app/formatters/job/markdown.js +102 -0
- package/app/formatters/progress/dom.js +135 -0
- package/app/formatters/progress/markdown.js +86 -0
- package/app/formatters/progress/shared.js +339 -0
- package/app/formatters/questions/json.js +43 -0
- package/app/formatters/questions/markdown.js +303 -0
- package/app/formatters/questions/shared.js +274 -0
- package/app/formatters/questions/yaml.js +76 -0
- package/app/formatters/shared.js +71 -0
- package/app/formatters/skill/dom.js +168 -0
- package/app/formatters/skill/markdown.js +109 -0
- package/app/formatters/skill/shared.js +125 -0
- package/app/formatters/stage/dom.js +135 -0
- package/app/formatters/stage/index.js +12 -0
- package/app/formatters/stage/shared.js +111 -0
- package/app/formatters/track/dom.js +128 -0
- package/app/formatters/track/markdown.js +105 -0
- package/app/formatters/track/shared.js +181 -0
- package/app/handout-main.js +421 -0
- package/app/handout.html +21 -0
- package/app/index.html +59 -0
- package/app/lib/card-mappers.js +173 -0
- package/app/lib/cli-output.js +270 -0
- package/app/lib/error-boundary.js +70 -0
- package/app/lib/errors.js +49 -0
- package/app/lib/form-controls.js +47 -0
- package/app/lib/job-cache.js +86 -0
- package/app/lib/markdown.js +114 -0
- package/app/lib/radar.js +866 -0
- package/app/lib/reactive.js +77 -0
- package/app/lib/render.js +212 -0
- package/app/lib/router-core.js +160 -0
- package/app/lib/router-pages.js +16 -0
- package/app/lib/router-slides.js +202 -0
- package/app/lib/state.js +148 -0
- package/app/lib/utils.js +14 -0
- package/app/lib/yaml-loader.js +327 -0
- package/app/main.js +213 -0
- package/app/model/agent.js +702 -0
- package/app/model/checklist.js +137 -0
- package/app/model/derivation.js +699 -0
- package/app/model/index-generator.js +71 -0
- package/app/model/interview.js +539 -0
- package/app/model/job.js +222 -0
- package/app/model/levels.js +591 -0
- package/app/model/loader.js +564 -0
- package/app/model/matching.js +858 -0
- package/app/model/modifiers.js +158 -0
- package/app/model/profile.js +266 -0
- package/app/model/progression.js +507 -0
- package/app/model/validation.js +1385 -0
- package/app/pages/agent-builder.js +823 -0
- package/app/pages/assessment-results.js +507 -0
- package/app/pages/behaviour.js +70 -0
- package/app/pages/discipline.js +71 -0
- package/app/pages/driver.js +106 -0
- package/app/pages/grade.js +117 -0
- package/app/pages/interview-builder.js +50 -0
- package/app/pages/interview.js +304 -0
- package/app/pages/job-builder.js +50 -0
- package/app/pages/job.js +58 -0
- package/app/pages/landing.js +305 -0
- package/app/pages/progress-builder.js +58 -0
- package/app/pages/progress.js +495 -0
- package/app/pages/self-assessment.js +729 -0
- package/app/pages/skill.js +113 -0
- package/app/pages/stage.js +231 -0
- package/app/pages/track.js +69 -0
- package/app/slide-main.js +360 -0
- package/app/slides/behaviour.js +38 -0
- package/app/slides/chapter.js +82 -0
- package/app/slides/discipline.js +40 -0
- package/app/slides/driver.js +39 -0
- package/app/slides/grade.js +32 -0
- package/app/slides/index.js +198 -0
- package/app/slides/interview.js +58 -0
- package/app/slides/job.js +55 -0
- package/app/slides/overview.js +126 -0
- package/app/slides/progress.js +83 -0
- package/app/slides/skill.js +40 -0
- package/app/slides/track.js +39 -0
- package/app/slides.html +56 -0
- package/app/types.js +147 -0
- package/bin/pathway.js +489 -0
- package/examples/agents/.claude/skills/architecture-design/SKILL.md +88 -0
- package/examples/agents/.claude/skills/cloud-platforms/SKILL.md +90 -0
- package/examples/agents/.claude/skills/code-quality-review/SKILL.md +67 -0
- package/examples/agents/.claude/skills/data-modeling/SKILL.md +99 -0
- package/examples/agents/.claude/skills/developer-experience/SKILL.md +99 -0
- package/examples/agents/.claude/skills/devops-cicd/SKILL.md +96 -0
- package/examples/agents/.claude/skills/full-stack-development/SKILL.md +90 -0
- package/examples/agents/.claude/skills/knowledge-management/SKILL.md +100 -0
- package/examples/agents/.claude/skills/pattern-generalization/SKILL.md +102 -0
- package/examples/agents/.claude/skills/sre-practices/SKILL.md +117 -0
- package/examples/agents/.claude/skills/technical-debt-management/SKILL.md +123 -0
- package/examples/agents/.claude/skills/technical-writing/SKILL.md +129 -0
- package/examples/agents/.github/agents/se-platform-code.agent.md +181 -0
- package/examples/agents/.github/agents/se-platform-plan.agent.md +178 -0
- package/examples/agents/.github/agents/se-platform-review.agent.md +113 -0
- package/examples/agents/.vscode/settings.json +8 -0
- package/examples/behaviours/_index.yaml +8 -0
- package/examples/behaviours/outcome_ownership.yaml +44 -0
- package/examples/behaviours/polymathic_knowledge.yaml +42 -0
- package/examples/behaviours/precise_communication.yaml +40 -0
- package/examples/behaviours/relentless_curiosity.yaml +38 -0
- package/examples/behaviours/systems_thinking.yaml +41 -0
- package/examples/capabilities/_index.yaml +8 -0
- package/examples/capabilities/business.yaml +251 -0
- package/examples/capabilities/delivery.yaml +352 -0
- package/examples/capabilities/people.yaml +100 -0
- package/examples/capabilities/reliability.yaml +318 -0
- package/examples/capabilities/scale.yaml +394 -0
- package/examples/disciplines/_index.yaml +5 -0
- package/examples/disciplines/data_engineering.yaml +76 -0
- package/examples/disciplines/software_engineering.yaml +76 -0
- package/examples/drivers.yaml +205 -0
- package/examples/framework.yaml +58 -0
- package/examples/grades.yaml +118 -0
- package/examples/questions/behaviours/outcome_ownership.yaml +52 -0
- package/examples/questions/behaviours/polymathic_knowledge.yaml +48 -0
- package/examples/questions/behaviours/precise_communication.yaml +55 -0
- package/examples/questions/behaviours/relentless_curiosity.yaml +51 -0
- package/examples/questions/behaviours/systems_thinking.yaml +53 -0
- package/examples/questions/skills/architecture_design.yaml +54 -0
- package/examples/questions/skills/cloud_platforms.yaml +48 -0
- package/examples/questions/skills/code_quality.yaml +49 -0
- package/examples/questions/skills/data_modeling.yaml +46 -0
- package/examples/questions/skills/devops.yaml +47 -0
- package/examples/questions/skills/full_stack_development.yaml +48 -0
- package/examples/questions/skills/sre_practices.yaml +44 -0
- package/examples/questions/skills/stakeholder_management.yaml +49 -0
- package/examples/questions/skills/team_collaboration.yaml +43 -0
- package/examples/questions/skills/technical_writing.yaml +43 -0
- package/examples/self-assessments.yaml +66 -0
- package/examples/stages.yaml +76 -0
- package/examples/tracks/_index.yaml +6 -0
- package/examples/tracks/manager.yaml +53 -0
- package/examples/tracks/platform.yaml +54 -0
- package/examples/tracks/sre.yaml +58 -0
- package/examples/vscode-settings.yaml +22 -0
- package/package.json +68 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Handout View Styles
|
|
3
|
+
*
|
|
4
|
+
* Handout-specific styles that override slide view.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@layer handout {
|
|
8
|
+
.handout-view {
|
|
9
|
+
padding: var(--space-lg);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.handout-view .detail-page {
|
|
13
|
+
margin-bottom: var(--space-xl);
|
|
14
|
+
padding-bottom: var(--space-xl);
|
|
15
|
+
border-bottom: 3px solid var(--color-border);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.handout-view .detail-page:last-child {
|
|
19
|
+
border-bottom: none;
|
|
20
|
+
margin-bottom: 0;
|
|
21
|
+
padding-bottom: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.handout-section-title {
|
|
25
|
+
font-size: var(--font-size-xl);
|
|
26
|
+
margin-bottom: var(--space-lg);
|
|
27
|
+
padding-bottom: var(--space-sm);
|
|
28
|
+
border-bottom: 2px solid var(--color-primary);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,608 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Print Styles
|
|
3
|
+
*
|
|
4
|
+
* Print-only media queries for all views.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@layer print {
|
|
8
|
+
@media print {
|
|
9
|
+
@page {
|
|
10
|
+
size: landscape;
|
|
11
|
+
margin: 0; /* Remove margins to eliminate space for browser headers/footers */
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/* Force landscape orientation */
|
|
15
|
+
html,
|
|
16
|
+
body {
|
|
17
|
+
width: 100%;
|
|
18
|
+
height: 100%;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* Slide view base print styles */
|
|
22
|
+
.slide-view {
|
|
23
|
+
padding: 0.75cm;
|
|
24
|
+
max-width: none;
|
|
25
|
+
background: white !important;
|
|
26
|
+
animation: none !important;
|
|
27
|
+
min-height: auto;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.slide-view::before {
|
|
31
|
+
display: none !important;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.slide-nav {
|
|
35
|
+
display: none !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.slide-view main {
|
|
39
|
+
padding-bottom: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/* Reduce text sizes for compact print */
|
|
43
|
+
.slide-view {
|
|
44
|
+
font-size: 11px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.slide-view .page-title {
|
|
48
|
+
font-size: 20px;
|
|
49
|
+
margin-bottom: 0.25rem;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.slide-view .page-description {
|
|
53
|
+
font-size: 11px;
|
|
54
|
+
margin-bottom: 0.5rem;
|
|
55
|
+
display: block !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* Ensure text-muted paragraphs in header are visible */
|
|
59
|
+
.slide-view .page-header .text-muted,
|
|
60
|
+
.slide-view .page-header p {
|
|
61
|
+
display: block !important;
|
|
62
|
+
visibility: visible !important;
|
|
63
|
+
font-size: 10px;
|
|
64
|
+
color: #475569 !important;
|
|
65
|
+
-webkit-print-color-adjust: exact;
|
|
66
|
+
print-color-adjust: exact;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.slide-view .section-title,
|
|
70
|
+
.slide-section-title {
|
|
71
|
+
font-size: 14px;
|
|
72
|
+
margin-bottom: 0.35rem;
|
|
73
|
+
padding-bottom: 0.2rem;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* Compact page header */
|
|
77
|
+
.slide-view .page-header {
|
|
78
|
+
page-break-after: avoid;
|
|
79
|
+
margin-bottom: 0.75rem;
|
|
80
|
+
padding: 0.5rem;
|
|
81
|
+
background: none !important;
|
|
82
|
+
box-shadow: none !important;
|
|
83
|
+
backdrop-filter: none !important;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.slide-view .page-header::before {
|
|
87
|
+
display: none !important;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* Compact sections */
|
|
91
|
+
.section,
|
|
92
|
+
.section-detail,
|
|
93
|
+
.slide-section {
|
|
94
|
+
margin-top: 0.5rem;
|
|
95
|
+
margin-bottom: 0.5rem;
|
|
96
|
+
padding: 0.5rem;
|
|
97
|
+
page-break-inside: avoid;
|
|
98
|
+
background: none !important;
|
|
99
|
+
box-shadow: none !important;
|
|
100
|
+
backdrop-filter: none !important;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/* Two-column layout for modifier tables */
|
|
104
|
+
.slide-view .modifier-tables-row,
|
|
105
|
+
.track-detail .section-detail + .section-detail {
|
|
106
|
+
display: inline-block;
|
|
107
|
+
width: 48%;
|
|
108
|
+
vertical-align: top;
|
|
109
|
+
margin-right: 2%;
|
|
110
|
+
page-break-inside: avoid;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.track-detail {
|
|
114
|
+
display: block;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.track-detail .section-detail {
|
|
118
|
+
page-break-inside: avoid;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/* Force modifier sections into columns */
|
|
122
|
+
.slide-view .print-columns {
|
|
123
|
+
display: flex;
|
|
124
|
+
flex-wrap: wrap;
|
|
125
|
+
gap: 1rem;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.slide-view .print-columns > * {
|
|
129
|
+
flex: 1 1 45%;
|
|
130
|
+
min-width: 250px;
|
|
131
|
+
max-width: 48%;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
/* Compact tables */
|
|
135
|
+
.slide-view .data-table,
|
|
136
|
+
.slide-view .level-table,
|
|
137
|
+
.slide-view .table {
|
|
138
|
+
page-break-inside: avoid;
|
|
139
|
+
font-size: 10px;
|
|
140
|
+
margin-bottom: 0.5rem;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.slide-view .data-table th,
|
|
144
|
+
.slide-view .data-table td,
|
|
145
|
+
.slide-view .level-table th,
|
|
146
|
+
.slide-view .level-table td,
|
|
147
|
+
.slide-view .table th,
|
|
148
|
+
.slide-view .table td {
|
|
149
|
+
padding: 0.25rem 0.5rem;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.slide-view .table-container {
|
|
153
|
+
overflow: visible;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/* Compact stats grid */
|
|
157
|
+
.slide-stats,
|
|
158
|
+
.stats-grid {
|
|
159
|
+
gap: 0.5rem;
|
|
160
|
+
margin-bottom: 0.5rem;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.slide-stat,
|
|
164
|
+
.stat-card {
|
|
165
|
+
padding: 0.35rem;
|
|
166
|
+
background: none !important;
|
|
167
|
+
border: 1px solid #cbd5e1;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.slide-stat::before,
|
|
171
|
+
.stat-card::before {
|
|
172
|
+
display: none !important;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.slide-stat-value,
|
|
176
|
+
.stat-value {
|
|
177
|
+
font-size: 16px;
|
|
178
|
+
-webkit-print-color-adjust: exact;
|
|
179
|
+
print-color-adjust: exact;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.slide-stat-label,
|
|
183
|
+
.stat-label {
|
|
184
|
+
font-size: 9px;
|
|
185
|
+
margin-top: 0.125rem;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/* Ensure 4-column grid fits in landscape */
|
|
189
|
+
.slide-progression-summary {
|
|
190
|
+
grid-template-columns: repeat(4, 1fr);
|
|
191
|
+
gap: 0.5rem;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/* Preserve badge colors */
|
|
195
|
+
.slide-view .badge,
|
|
196
|
+
.slide-view .level-badge,
|
|
197
|
+
.slide-view .tag,
|
|
198
|
+
.badge,
|
|
199
|
+
.level-badge,
|
|
200
|
+
.tag {
|
|
201
|
+
-webkit-print-color-adjust: exact;
|
|
202
|
+
print-color-adjust: exact;
|
|
203
|
+
background-color: inherit !important;
|
|
204
|
+
animation: none !important;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.badge-broad,
|
|
208
|
+
.badge-negative,
|
|
209
|
+
.badge-primary,
|
|
210
|
+
.badge-secondary,
|
|
211
|
+
.badge-default {
|
|
212
|
+
-webkit-print-color-adjust: exact;
|
|
213
|
+
print-color-adjust: exact;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/* Preserve text colors */
|
|
217
|
+
.text-muted,
|
|
218
|
+
.text-primary,
|
|
219
|
+
.text-success,
|
|
220
|
+
.text-warning,
|
|
221
|
+
.text-error,
|
|
222
|
+
.modifier-positive,
|
|
223
|
+
.modifier-negative,
|
|
224
|
+
.slide-modifier-positive,
|
|
225
|
+
.slide-modifier-negative {
|
|
226
|
+
-webkit-print-color-adjust: exact;
|
|
227
|
+
print-color-adjust: exact;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
/* Preserve level dot colors */
|
|
231
|
+
.slide-view .level-dot,
|
|
232
|
+
.slide-view .level-dot.filled,
|
|
233
|
+
.level-dot,
|
|
234
|
+
.level-dot.filled {
|
|
235
|
+
-webkit-print-color-adjust: exact;
|
|
236
|
+
print-color-adjust: exact;
|
|
237
|
+
animation: none !important;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.slide-view .level-dot.filled.level-1,
|
|
241
|
+
.slide-view .level-dot.filled.level-2,
|
|
242
|
+
.slide-view .level-dot.filled.level-3,
|
|
243
|
+
.slide-view .level-dot.filled.level-4,
|
|
244
|
+
.slide-view .level-dot.filled.level-5 {
|
|
245
|
+
-webkit-print-color-adjust: exact;
|
|
246
|
+
print-color-adjust: exact;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/* Links */
|
|
250
|
+
.slide-view a {
|
|
251
|
+
text-decoration: underline;
|
|
252
|
+
color: var(--color-text);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.slide-view a::after {
|
|
256
|
+
content: none;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
/* Page break controls */
|
|
260
|
+
.page-break-before {
|
|
261
|
+
page-break-before: always;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.page-break-after {
|
|
265
|
+
page-break-after: always;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
/* Remove decorative backgrounds */
|
|
269
|
+
.slide-question,
|
|
270
|
+
.slide-driver-item,
|
|
271
|
+
.slide-progression-stat {
|
|
272
|
+
background: none;
|
|
273
|
+
border: 1px solid #cbd5e1;
|
|
274
|
+
box-shadow: none !important;
|
|
275
|
+
backdrop-filter: none !important;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.slide-question::before,
|
|
279
|
+
.slide-driver-item::before {
|
|
280
|
+
display: none !important;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
/* Compact skill/behaviour rows */
|
|
284
|
+
.slide-skill-row,
|
|
285
|
+
.slide-behaviour-row,
|
|
286
|
+
.slide-change-row {
|
|
287
|
+
padding: 0.2rem 0.5rem;
|
|
288
|
+
margin-bottom: 0.15rem;
|
|
289
|
+
background: none !important;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.slide-skill-row.header,
|
|
293
|
+
.slide-behaviour-row.header,
|
|
294
|
+
.slide-change-row.header {
|
|
295
|
+
background: #f1f5f9 !important;
|
|
296
|
+
-webkit-print-color-adjust: exact;
|
|
297
|
+
print-color-adjust: exact;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
/* Compact related lists */
|
|
301
|
+
.slide-view .related-list li {
|
|
302
|
+
padding: 0.2rem 0.5rem;
|
|
303
|
+
margin-bottom: 0.1rem;
|
|
304
|
+
background: none !important;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
/* Driver coverage compact */
|
|
308
|
+
.slide-driver-coverage {
|
|
309
|
+
gap: 0.5rem;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.slide-driver-item {
|
|
313
|
+
padding: 0.35rem;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
/* Content columns for formatters */
|
|
317
|
+
.content-columns {
|
|
318
|
+
display: grid;
|
|
319
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
320
|
+
gap: 0.75rem;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.content-columns .column {
|
|
324
|
+
page-break-inside: avoid;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/* Stats row compact */
|
|
328
|
+
.stats {
|
|
329
|
+
display: flex;
|
|
330
|
+
gap: 0.75rem;
|
|
331
|
+
margin-bottom: 0.5rem;
|
|
332
|
+
flex-wrap: wrap;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.stat {
|
|
336
|
+
padding: 0.35rem;
|
|
337
|
+
min-width: 80px;
|
|
338
|
+
background: none !important;
|
|
339
|
+
border: 1px solid #cbd5e1;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.stat-value {
|
|
343
|
+
font-size: 16px;
|
|
344
|
+
-webkit-print-color-adjust: exact;
|
|
345
|
+
print-color-adjust: exact;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.stat-label {
|
|
349
|
+
font-size: 9px;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
/* Detail sections compact */
|
|
353
|
+
.detail-section {
|
|
354
|
+
margin-bottom: 0.5rem;
|
|
355
|
+
page-break-inside: avoid;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.detail-section .section-title {
|
|
359
|
+
font-size: 13px;
|
|
360
|
+
margin-bottom: 0.25rem;
|
|
361
|
+
padding-bottom: 0.15rem;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.list-item {
|
|
365
|
+
padding: 0.25rem 0.5rem;
|
|
366
|
+
margin-bottom: 0.25rem;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.list-item .label {
|
|
370
|
+
font-size: 9px;
|
|
371
|
+
margin-bottom: 0.1rem;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.list-item p {
|
|
375
|
+
font-size: 10px;
|
|
376
|
+
margin: 0;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
/* Related lists compact */
|
|
380
|
+
.related-list {
|
|
381
|
+
margin: 0.25rem 0;
|
|
382
|
+
padding-left: 1rem;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.related-list li {
|
|
386
|
+
padding: 0.1rem 0;
|
|
387
|
+
font-size: 10px;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
/* Level table compact */
|
|
391
|
+
.level-table {
|
|
392
|
+
font-size: 10px;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.level-table th,
|
|
396
|
+
.level-table td {
|
|
397
|
+
padding: 0.2rem 0.4rem;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
/* Badges compact */
|
|
401
|
+
.slide-view .badges,
|
|
402
|
+
.slide-view .page-meta,
|
|
403
|
+
.badges,
|
|
404
|
+
.page-meta {
|
|
405
|
+
margin-bottom: 0.25rem;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.slide-view .badge,
|
|
409
|
+
.badge {
|
|
410
|
+
padding: 0.1rem 0.35rem;
|
|
411
|
+
font-size: 9px;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
/* Auto-grid layouts for print */
|
|
415
|
+
.auto-grid-xs,
|
|
416
|
+
.auto-grid-sm,
|
|
417
|
+
.auto-grid-md,
|
|
418
|
+
.auto-grid-lg {
|
|
419
|
+
gap: 0.75rem;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.auto-grid-lg {
|
|
423
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
/* Radar charts compact for print */
|
|
427
|
+
.radar-container,
|
|
428
|
+
.slide-radar-container {
|
|
429
|
+
margin: 0.5rem 0;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.radar-container svg,
|
|
433
|
+
.slide-radar-container svg {
|
|
434
|
+
max-width: 320px;
|
|
435
|
+
max-height: 320px;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
/* Skill matrix and behaviour profile compact */
|
|
439
|
+
.skill-matrix,
|
|
440
|
+
.behaviour-profile {
|
|
441
|
+
font-size: 10px;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.skill-matrix th,
|
|
445
|
+
.skill-matrix td,
|
|
446
|
+
.behaviour-profile th,
|
|
447
|
+
.behaviour-profile td {
|
|
448
|
+
padding: 0.2rem 0.4rem;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
/* Job detail page compact */
|
|
452
|
+
.job-detail-page .section {
|
|
453
|
+
margin-top: 0.5rem;
|
|
454
|
+
margin-bottom: 0.5rem;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
/* Job description HTML formatting for print */
|
|
458
|
+
.job-description-print-section {
|
|
459
|
+
display: block !important;
|
|
460
|
+
page-break-before: always;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
/* Hide the "Job Description" section title */
|
|
464
|
+
.job-description-print-section > .section-title {
|
|
465
|
+
display: none !important;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.job-description-print-only {
|
|
469
|
+
font-size: 8px;
|
|
470
|
+
line-height: 1.35;
|
|
471
|
+
/* Two-column layout like an academic paper */
|
|
472
|
+
column-count: 2;
|
|
473
|
+
column-gap: 2rem;
|
|
474
|
+
column-rule: 1px solid #e2e8f0;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.job-description-print-only h1 {
|
|
478
|
+
font-size: 12px;
|
|
479
|
+
margin: 0 0 0.4rem;
|
|
480
|
+
page-break-after: avoid;
|
|
481
|
+
break-after: avoid-column;
|
|
482
|
+
column-span: all;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.job-description-print-only h2 {
|
|
486
|
+
font-size: 10px;
|
|
487
|
+
margin: 0.6rem 0 0.3rem;
|
|
488
|
+
border-bottom: 1px solid #cbd5e1;
|
|
489
|
+
padding-bottom: 0.1rem;
|
|
490
|
+
page-break-after: avoid;
|
|
491
|
+
break-after: avoid-column;
|
|
492
|
+
break-inside: avoid;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.job-description-print-only h3 {
|
|
496
|
+
font-size: 9px;
|
|
497
|
+
margin: 0.4rem 0 0.2rem;
|
|
498
|
+
page-break-after: avoid;
|
|
499
|
+
break-after: avoid-column;
|
|
500
|
+
break-inside: avoid;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.job-description-print-only p {
|
|
504
|
+
margin: 0.25rem 0;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.job-description-print-only ul {
|
|
508
|
+
margin: 0.25rem 0;
|
|
509
|
+
padding-left: 1.25rem;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.job-description-print-only li {
|
|
513
|
+
margin: 0.15rem 0;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.job-description-print-only strong {
|
|
517
|
+
font-weight: 600;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
/* Page brand header for print */
|
|
521
|
+
.page-brand-header {
|
|
522
|
+
position: fixed;
|
|
523
|
+
top: 0;
|
|
524
|
+
left: 0;
|
|
525
|
+
right: 0;
|
|
526
|
+
background: white;
|
|
527
|
+
z-index: 100;
|
|
528
|
+
padding: var(--space-xs) var(--space-md);
|
|
529
|
+
margin-bottom: 0;
|
|
530
|
+
border-bottom: 1px solid var(--color-border);
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.page-brand-header .brand-tag {
|
|
534
|
+
background: linear-gradient(
|
|
535
|
+
135deg,
|
|
536
|
+
#f472b6 0%,
|
|
537
|
+
#a78bfa 50%,
|
|
538
|
+
#38bdf8 100%
|
|
539
|
+
);
|
|
540
|
+
color: white;
|
|
541
|
+
-webkit-print-color-adjust: exact;
|
|
542
|
+
print-color-adjust: exact;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
main {
|
|
546
|
+
padding-top: 3rem;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
/* Chapter cover print styles */
|
|
550
|
+
.chapter-cover {
|
|
551
|
+
page-break-after: always;
|
|
552
|
+
min-height: 100vh;
|
|
553
|
+
display: flex;
|
|
554
|
+
flex-direction: column;
|
|
555
|
+
justify-content: center;
|
|
556
|
+
align-items: center;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
/* Checklist print styles */
|
|
560
|
+
.checklist-section {
|
|
561
|
+
page-break-inside: avoid;
|
|
562
|
+
margin-bottom: var(--space-lg);
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.checklist-group {
|
|
566
|
+
margin-bottom: var(--space-md);
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.checklist-group-header {
|
|
570
|
+
font-weight: 600;
|
|
571
|
+
margin-bottom: var(--space-xs);
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.checklist-items {
|
|
575
|
+
list-style: none;
|
|
576
|
+
padding: 0;
|
|
577
|
+
margin: 0;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.checklist-item {
|
|
581
|
+
display: flex;
|
|
582
|
+
align-items: flex-start;
|
|
583
|
+
gap: var(--space-sm);
|
|
584
|
+
padding: var(--space-xs) 0;
|
|
585
|
+
border-bottom: 1px solid var(--color-border);
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.checklist-item::before {
|
|
589
|
+
content: "☐";
|
|
590
|
+
font-size: var(--font-size-lg);
|
|
591
|
+
flex-shrink: 0;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
/* Human-only badge for print */
|
|
595
|
+
.badge-human-only {
|
|
596
|
+
background: #fef3c7;
|
|
597
|
+
color: #92400e;
|
|
598
|
+
print-color-adjust: exact;
|
|
599
|
+
-webkit-print-color-adjust: exact;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.human-only-row {
|
|
603
|
+
background: rgba(254, 243, 199, 0.3);
|
|
604
|
+
print-color-adjust: exact;
|
|
605
|
+
-webkit-print-color-adjust: exact;
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
}
|