@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,113 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Slide Animations
|
|
3
|
+
*
|
|
4
|
+
* All animation keyframes for slide views - consolidated definition.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@layer slides {
|
|
8
|
+
/* Background gradient animation */
|
|
9
|
+
@keyframes gradientShift {
|
|
10
|
+
0%,
|
|
11
|
+
100% {
|
|
12
|
+
background-position: 0% 50%;
|
|
13
|
+
}
|
|
14
|
+
50% {
|
|
15
|
+
background-position: 100% 50%;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/* Brand tag gradient animation */
|
|
20
|
+
@keyframes gradient-shift {
|
|
21
|
+
0%,
|
|
22
|
+
100% {
|
|
23
|
+
background-position: 0% 50%;
|
|
24
|
+
}
|
|
25
|
+
50% {
|
|
26
|
+
background-position: 100% 50%;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* Loading pulse */
|
|
31
|
+
@keyframes pulse {
|
|
32
|
+
0%,
|
|
33
|
+
100% {
|
|
34
|
+
opacity: 1;
|
|
35
|
+
}
|
|
36
|
+
50% {
|
|
37
|
+
opacity: 0.5;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* Header shimmer effect */
|
|
42
|
+
@keyframes shimmer {
|
|
43
|
+
0% {
|
|
44
|
+
left: -100%;
|
|
45
|
+
}
|
|
46
|
+
100% {
|
|
47
|
+
left: 100%;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* Title fade in and scale */
|
|
52
|
+
@keyframes fadeInScale {
|
|
53
|
+
from {
|
|
54
|
+
opacity: 0;
|
|
55
|
+
transform: scale(0.95);
|
|
56
|
+
}
|
|
57
|
+
to {
|
|
58
|
+
opacity: 1;
|
|
59
|
+
transform: scale(1);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/* Badge pop in */
|
|
64
|
+
@keyframes badgePopIn {
|
|
65
|
+
0% {
|
|
66
|
+
opacity: 0;
|
|
67
|
+
transform: scale(0) rotate(-12deg);
|
|
68
|
+
}
|
|
69
|
+
60% {
|
|
70
|
+
transform: scale(1.1) rotate(2deg);
|
|
71
|
+
}
|
|
72
|
+
100% {
|
|
73
|
+
opacity: 1;
|
|
74
|
+
transform: scale(1) rotate(0deg);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/* Dot fill animation */
|
|
79
|
+
@keyframes dotFillUp {
|
|
80
|
+
0% {
|
|
81
|
+
transform: scale(0.3);
|
|
82
|
+
opacity: 0;
|
|
83
|
+
}
|
|
84
|
+
50% {
|
|
85
|
+
transform: scale(1.15);
|
|
86
|
+
}
|
|
87
|
+
100% {
|
|
88
|
+
transform: scale(1);
|
|
89
|
+
opacity: 1;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/* Dot pulse animation */
|
|
94
|
+
@keyframes dotPulse {
|
|
95
|
+
0%,
|
|
96
|
+
100% {
|
|
97
|
+
transform: scale(1);
|
|
98
|
+
}
|
|
99
|
+
50% {
|
|
100
|
+
transform: scale(1.08);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* Fade in animation */
|
|
105
|
+
@keyframes fadeIn {
|
|
106
|
+
from {
|
|
107
|
+
opacity: 0;
|
|
108
|
+
}
|
|
109
|
+
to {
|
|
110
|
+
opacity: 1;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -0,0 +1,330 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Slide View Base Styles
|
|
3
|
+
*
|
|
4
|
+
* Base styles for the slide view layout and navigation.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@layer slides {
|
|
8
|
+
.slide-view {
|
|
9
|
+
max-width: 1400px;
|
|
10
|
+
margin: 0 auto;
|
|
11
|
+
padding: var(--space-xl);
|
|
12
|
+
background: linear-gradient(
|
|
13
|
+
135deg,
|
|
14
|
+
#ffffff 0%,
|
|
15
|
+
#f8fafc 25%,
|
|
16
|
+
#f1f5f9 50%,
|
|
17
|
+
#f8fafc 75%,
|
|
18
|
+
#ffffff 100%
|
|
19
|
+
);
|
|
20
|
+
background-size: 400% 400%;
|
|
21
|
+
animation: gradientShift 15s ease infinite;
|
|
22
|
+
min-height: 100vh;
|
|
23
|
+
position: relative;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.slide-view::before {
|
|
27
|
+
content: "";
|
|
28
|
+
position: fixed;
|
|
29
|
+
top: 0;
|
|
30
|
+
left: 0;
|
|
31
|
+
right: 0;
|
|
32
|
+
height: 300px;
|
|
33
|
+
background: radial-gradient(
|
|
34
|
+
ellipse at top,
|
|
35
|
+
rgba(59, 130, 246, 0.08) 0%,
|
|
36
|
+
rgba(147, 51, 234, 0.05) 40%,
|
|
37
|
+
transparent 70%
|
|
38
|
+
);
|
|
39
|
+
pointer-events: none;
|
|
40
|
+
z-index: 0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.slide-view main {
|
|
44
|
+
padding-bottom: 5rem; /* Account for fixed nav */
|
|
45
|
+
position: relative;
|
|
46
|
+
z-index: 1;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/* Loading state */
|
|
50
|
+
.slide-loading {
|
|
51
|
+
display: flex;
|
|
52
|
+
align-items: center;
|
|
53
|
+
justify-content: center;
|
|
54
|
+
min-height: 200px;
|
|
55
|
+
font-size: var(--font-size-lg);
|
|
56
|
+
background: linear-gradient(135deg, #3b82f6, #9333ea);
|
|
57
|
+
-webkit-background-clip: text;
|
|
58
|
+
-webkit-text-fill-color: transparent;
|
|
59
|
+
background-clip: text;
|
|
60
|
+
font-weight: 600;
|
|
61
|
+
animation: pulse 2s ease-in-out infinite;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.slide-loading.hidden {
|
|
65
|
+
display: none;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/* Navigation */
|
|
69
|
+
.slide-nav {
|
|
70
|
+
position: fixed;
|
|
71
|
+
bottom: 0;
|
|
72
|
+
left: 0;
|
|
73
|
+
right: 0;
|
|
74
|
+
display: flex;
|
|
75
|
+
align-items: center;
|
|
76
|
+
justify-content: center;
|
|
77
|
+
gap: var(--space-xl);
|
|
78
|
+
padding: var(--space-md);
|
|
79
|
+
background: rgba(255, 255, 255, 0.85);
|
|
80
|
+
backdrop-filter: blur(20px) saturate(180%);
|
|
81
|
+
-webkit-backdrop-filter: blur(20px) saturate(180%);
|
|
82
|
+
border-top: 1px solid rgba(59, 130, 246, 0.15);
|
|
83
|
+
box-shadow:
|
|
84
|
+
0 -4px 20px rgba(59, 130, 246, 0.08),
|
|
85
|
+
0 -1px 4px rgba(147, 51, 234, 0.05);
|
|
86
|
+
z-index: 100;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.slide-nav-btn {
|
|
90
|
+
padding: var(--space-sm) var(--space-md);
|
|
91
|
+
border: 1px solid transparent;
|
|
92
|
+
border-radius: var(--radius-md);
|
|
93
|
+
background:
|
|
94
|
+
linear-gradient(white, white) padding-box,
|
|
95
|
+
linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3))
|
|
96
|
+
border-box;
|
|
97
|
+
color: var(--color-text);
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
font-size: var(--font-size-sm);
|
|
100
|
+
font-family: inherit;
|
|
101
|
+
font-weight: 500;
|
|
102
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
103
|
+
box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
|
|
104
|
+
position: relative;
|
|
105
|
+
overflow: hidden;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.slide-nav-btn::before {
|
|
109
|
+
content: "";
|
|
110
|
+
position: absolute;
|
|
111
|
+
top: 0;
|
|
112
|
+
left: -100%;
|
|
113
|
+
width: 100%;
|
|
114
|
+
height: 100%;
|
|
115
|
+
background: linear-gradient(
|
|
116
|
+
90deg,
|
|
117
|
+
transparent,
|
|
118
|
+
rgba(255, 255, 255, 0.3),
|
|
119
|
+
transparent
|
|
120
|
+
);
|
|
121
|
+
transition: left 0.5s;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.slide-nav-btn:hover:not(:disabled)::before {
|
|
125
|
+
left: 100%;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.slide-nav-btn:hover:not(:disabled) {
|
|
129
|
+
background: linear-gradient(135deg, #3b82f6, #9333ea);
|
|
130
|
+
color: white;
|
|
131
|
+
transform: translateY(-1px);
|
|
132
|
+
box-shadow:
|
|
133
|
+
0 4px 16px rgba(59, 130, 246, 0.3),
|
|
134
|
+
0 2px 8px rgba(147, 51, 234, 0.2);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.slide-nav-btn:disabled {
|
|
138
|
+
opacity: 0.4;
|
|
139
|
+
cursor: not-allowed;
|
|
140
|
+
background: rgba(248, 250, 252, 0.5);
|
|
141
|
+
box-shadow: none;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.slide-nav-chapter {
|
|
145
|
+
min-width: 44px;
|
|
146
|
+
padding: var(--space-sm);
|
|
147
|
+
font-size: var(--font-size-md);
|
|
148
|
+
aspect-ratio: 1;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.slide-indicator {
|
|
152
|
+
font-size: var(--font-size-sm);
|
|
153
|
+
color: var(--color-text-muted);
|
|
154
|
+
font-weight: 500;
|
|
155
|
+
background: linear-gradient(135deg, #3b82f6, #9333ea);
|
|
156
|
+
-webkit-background-clip: text;
|
|
157
|
+
-webkit-text-fill-color: transparent;
|
|
158
|
+
background-clip: text;
|
|
159
|
+
min-width: 80px;
|
|
160
|
+
text-align: center;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/* Page header */
|
|
164
|
+
.slide-view .page-header {
|
|
165
|
+
border-bottom: 2px solid transparent;
|
|
166
|
+
border-image: linear-gradient(
|
|
167
|
+
90deg,
|
|
168
|
+
rgba(59, 130, 246, 0.3),
|
|
169
|
+
rgba(147, 51, 234, 0.3),
|
|
170
|
+
rgba(59, 130, 246, 0.3)
|
|
171
|
+
)
|
|
172
|
+
1;
|
|
173
|
+
margin-bottom: var(--space-xl);
|
|
174
|
+
padding-bottom: var(--space-lg);
|
|
175
|
+
background: linear-gradient(
|
|
176
|
+
135deg,
|
|
177
|
+
rgba(255, 255, 255, 0.9) 0%,
|
|
178
|
+
rgba(248, 250, 252, 0.8) 100%
|
|
179
|
+
);
|
|
180
|
+
backdrop-filter: blur(10px);
|
|
181
|
+
border-radius: var(--radius-lg);
|
|
182
|
+
padding: var(--space-lg);
|
|
183
|
+
box-shadow:
|
|
184
|
+
0 4px 20px rgba(59, 130, 246, 0.08),
|
|
185
|
+
0 2px 8px rgba(147, 51, 234, 0.05);
|
|
186
|
+
position: relative;
|
|
187
|
+
overflow: hidden;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.slide-view .page-header::before {
|
|
191
|
+
content: "";
|
|
192
|
+
position: absolute;
|
|
193
|
+
top: 0;
|
|
194
|
+
left: -100%;
|
|
195
|
+
width: 200%;
|
|
196
|
+
height: 100%;
|
|
197
|
+
background: linear-gradient(
|
|
198
|
+
90deg,
|
|
199
|
+
transparent,
|
|
200
|
+
rgba(59, 130, 246, 0.03),
|
|
201
|
+
transparent
|
|
202
|
+
);
|
|
203
|
+
animation: shimmer 3s infinite;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.slide-view .page-title {
|
|
207
|
+
font-size: var(--font-size-3xl);
|
|
208
|
+
font-weight: 700;
|
|
209
|
+
margin: 0 0 var(--space-sm);
|
|
210
|
+
color: var(--color-text);
|
|
211
|
+
position: relative;
|
|
212
|
+
animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.slide-view .page-title .gradient-text {
|
|
216
|
+
background: linear-gradient(135deg, #1e40af, #7c3aed);
|
|
217
|
+
-webkit-background-clip: text;
|
|
218
|
+
-webkit-text-fill-color: transparent;
|
|
219
|
+
background-clip: text;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.slide-view .page-description {
|
|
223
|
+
font-size: var(--font-size-lg);
|
|
224
|
+
color: var(--color-text-muted);
|
|
225
|
+
max-width: 80ch;
|
|
226
|
+
margin: 0;
|
|
227
|
+
position: relative;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.slide-view .page-meta {
|
|
231
|
+
display: flex;
|
|
232
|
+
gap: var(--space-md);
|
|
233
|
+
margin-top: var(--space-md);
|
|
234
|
+
flex-wrap: wrap;
|
|
235
|
+
position: relative;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/* Hide elements in slide mode */
|
|
239
|
+
.slide-view .nav,
|
|
240
|
+
.slide-view .page-actions,
|
|
241
|
+
.slide-view footer,
|
|
242
|
+
.slide-view .action-buttons,
|
|
243
|
+
.slide-view .back-link,
|
|
244
|
+
.slide-view #app-nav,
|
|
245
|
+
.slide-view #app-footer {
|
|
246
|
+
display: none !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/* Hide job description HTML on screen - only show when printing */
|
|
250
|
+
.slide-view .job-description-print-section {
|
|
251
|
+
display: none;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/* Page brand header */
|
|
255
|
+
.page-brand-header {
|
|
256
|
+
display: flex;
|
|
257
|
+
align-items: center;
|
|
258
|
+
justify-content: space-between;
|
|
259
|
+
padding: var(--space-sm) var(--space-lg);
|
|
260
|
+
margin-bottom: var(--space-lg);
|
|
261
|
+
border-bottom: 1px solid var(--color-border);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.page-brand-header .brand-title {
|
|
265
|
+
font-size: var(--font-size-sm);
|
|
266
|
+
font-weight: 600;
|
|
267
|
+
color: var(--color-text-muted);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.page-brand-header .brand-tag {
|
|
271
|
+
font-size: var(--font-size-xs);
|
|
272
|
+
font-weight: 600;
|
|
273
|
+
letter-spacing: 0.5px;
|
|
274
|
+
padding: 2px 8px;
|
|
275
|
+
border-radius: 9999px;
|
|
276
|
+
background: linear-gradient(135deg, #f472b6 0%, #a78bfa 50%, #38bdf8 100%);
|
|
277
|
+
background-size: 200% 200%;
|
|
278
|
+
color: white;
|
|
279
|
+
animation: gradient-shift 6s ease infinite;
|
|
280
|
+
opacity: 0.9;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
/* Chapter cover page */
|
|
284
|
+
.chapter-cover {
|
|
285
|
+
display: flex;
|
|
286
|
+
flex-direction: column;
|
|
287
|
+
justify-content: center;
|
|
288
|
+
align-items: center;
|
|
289
|
+
min-height: 60vh;
|
|
290
|
+
text-align: center;
|
|
291
|
+
padding: var(--space-xl);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.chapter-title {
|
|
295
|
+
font-size: 3rem;
|
|
296
|
+
font-weight: 700;
|
|
297
|
+
color: var(--color-text);
|
|
298
|
+
margin-bottom: var(--space-lg);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.chapter-title .gradient-text {
|
|
302
|
+
background: linear-gradient(135deg, #3b82f6, #9333ea);
|
|
303
|
+
-webkit-background-clip: text;
|
|
304
|
+
-webkit-text-fill-color: transparent;
|
|
305
|
+
background-clip: text;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.chapter-description {
|
|
309
|
+
font-size: 1.25rem;
|
|
310
|
+
max-width: 600px;
|
|
311
|
+
line-height: 1.6;
|
|
312
|
+
color: var(--color-text-muted);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
/* Responsive */
|
|
316
|
+
@media (max-width: 768px) {
|
|
317
|
+
.slide-view {
|
|
318
|
+
padding: var(--space-md);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.slide-view .page-title {
|
|
322
|
+
font-size: var(--font-size-2xl);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.slide-nav {
|
|
326
|
+
gap: var(--space-md);
|
|
327
|
+
padding: var(--space-sm);
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
}
|