Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
re-kirby
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
santiago duque
re-kirby
Commits
af3182bb
Commit
af3182bb
authored
May 04, 2026
by
santiago duque
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added Continue agent and tested it
parent
218652e2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
59 additions
and
40 deletions
+59
-40
AGENTS.md
AGENTS.md
+31
-0
CLAUDE.md
CLAUDE.md
+0
-10
config.codekit3
config.codekit3
+10
-2
chapter.scss
src/css/templates/chapter.scss
+16
-26
chapter.css
www/assets/css/templates/chapter.css
+1
-1
chapter.css.map
www/assets/css/templates/chapter.css.map
+1
-1
No files found.
AGENTS.md
0 → 100644
View file @
af3182bb
# Agent instructions for this project (`resident-kirby`)
Scope these rules to all future code reviews, edits, and checks in this repository.
## Primary code to review/edit
-
`src/`
(real source for CSS/JS)
-
`www/site/`
(templates, snippets, blueprints, config)
## Always exclude from review unless explicitly requested
-
`www/kirby/`
(Kirby CMS core)
-
`www/content/`
(content files)
-
`www/media/`
(generated media/cache)
-
`www/assets/`
(compiled output from CodeKit; do not edit manually)
-
`www/vendor/`
(Composer dependencies)
-
`www/site/plugins/`
(third-party/local plugins; treat as external unless user asks)
## Build/tooling notes
-
CSS/JS source of truth is in
`src/`
.
-
CodeKit compiles:
-
`src/css/`
→
`www/assets/css/`
-
`src/js/`
→
`www/assets/js/`
-
Do not manually edit compiled files in
`www/assets/`
.
## Kirby-aware review behavior
-
Prefer checking custom app logic in:
-
`www/site/templates/`
-
`www/site/snippets/`
-
`www/site/blueprints/`
-
`www/site/config/`
-
Ignore runtime/generated/sensitive folders by default (e.g.
`www/site/cache`
,
`www/site/sessions`
,
`www/site/accounts`
,
`www/site/logs`
) unless explicitly requested.
-
If uncertain whether a path is framework/core/dependency/generated, default to omitting it and ask only when needed.
CLAUDE.md
deleted
100644 → 0
View file @
218652e2
# resident-kirby — Claude instructions
## Project structure
-
**Edit source files only:**
`src/`
(SCSS, JS) and
`www/site/`
(PHP templates, snippets, blueprints)
-
**Never read or edit:**
`www/kirby/`
— Kirby CMS core, treat as a black box
-
**Never manually edit:**
`www/assets/`
— CodeKit compiles
`src/`
into here automatically
## Tooling
-
CodeKit 3 watches
`src/css/`
→
`www/assets/css/`
and
`src/js/`
→
`www/assets/js/`
-
After editing a
`src/`
file, CodeKit recompiles; no need to touch the output files
config.codekit3
View file @
af3182bb
...
@@ -17,7 +17,15 @@
...
@@ -17,7 +17,15 @@
"oAP" : "\/.gitignore",
"oAP" : "\/.gitignore",
"oF" : 0
"oF" : 0
},
},
"\/CLAUDE.md" : {
"\/.vscode\/settings.json" : {
"ft" : 524288,
"oA" : 1,
"oAP" : "\/.vscode\/settings-min.json",
"oF" : 0,
"oO" : 1,
"oS" : 1
},
"\/AGENTS.md" : {
"cB" : 0,
"cB" : 0,
"cS" : 0,
"cS" : 0,
"eF" : 1,
"eF" : 1,
...
@@ -27,7 +35,7 @@
...
@@ -27,7 +35,7 @@
"ft" : 4096,
"ft" : 4096,
"hM" : 0,
"hM" : 0,
"oA" : 0,
"oA" : 0,
"oAP" : "\/
CLAUDE
.html",
"oAP" : "\/
AGENTS
.html",
"oF" : 0,
"oF" : 0,
"oFM" : 0,
"oFM" : 0,
"oS" : 0,
"oS" : 0,
...
...
src/css/templates/chapter.scss
View file @
af3182bb
...
@@ -164,18 +164,14 @@
...
@@ -164,18 +164,14 @@
// ===== Prose body =====
// ===== Prose body =====
p {
line-height: 1.75;
text-wrap: pretty;
position: relative;
}
.chapter-body {
.chapter-body {
margin: 0 auto;
margin: 0 auto;
position: relative;
position: relative;
//font-family: var(--font-body);
p {
p {
line-height: 1.75;
text-wrap: pretty;
position: relative;
color: var(--ink);
color: var(--ink);
margin-bottom: 1.6em;
margin-bottom: 1.6em;
}
}
...
@@ -225,27 +221,26 @@ p {
...
@@ -225,27 +221,26 @@ p {
.key-line,
.key-line,
em {
em {
//font-family: var(--font-display);
font-style: italic;
font-style: italic;
color: var(--accent-bright);
color: var(--accent-bright);
}
}
}
.prose.capitalise {
.prose.capitalise {
padding-top: 120px;
padding-top: 120px;
p:first-of-type {
p:first-of-type {
text-indent: 0;
text-indent: 0;
&::first-letter {
&::first-letter {
@include m.display-italic(5.5em);
@include m.display-italic(5.5em);
font-weight: 400;
font-weight: 400;
float: left;
float: left;
line-height: 0.85;
line-height: 0.85;
margin: 0.05em 0.12em 0 -0.05em;
margin: 0.05em 0.12em 0 -0.05em;
color: var(--accent);
color: var(--accent);
}
}
}
}
}
}
}
// ===== Pinned text — full-bleed sticky stage with centred heading/body =====
// ===== Pinned text — full-bleed sticky stage with centred heading/body =====
.pinned-text {
.pinned-text {
...
@@ -311,11 +306,9 @@ p {
...
@@ -311,11 +306,9 @@ p {
}
}
p {
p {
//@include m.display-italic(22px, 600);
color: var(--ink-dim);
color: var(--ink-dim);
max-width: 520px;
max-width: 520px;
margin: 0 auto;
margin: 0 auto;
//line-height: 1.5;
}
}
}
}
}
}
...
@@ -358,9 +351,6 @@ p {
...
@@ -358,9 +351,6 @@ p {
margin: 0 auto;
margin: 0 auto;
p {
p {
/* font-family: var(--font-body);
font-size: 21px; */
//line-height: 1.75;
color: var(--ink);
color: var(--ink);
margin-bottom: 1.6em;
margin-bottom: 1.6em;
text-wrap: pretty;
text-wrap: pretty;
...
...
www/assets/css/templates/chapter.css
View file @
af3182bb
.chapter-page
{
position
:
relative
}
.chapter-hero
{
height
:
100vh
;
min-height
:
700px
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
position
:
relative
;
overflow
:
hidden
}
.chapter-hero-bg
{
position
:
absolute
;
inset
:
-10%
;
background
:
radial-gradient
(
ellipse
at
30%
40%
,
rgba
(
90
,
14
,
14
,
0.6
)
0%
,
transparent
50%
),
radial-gradient
(
ellipse
at
70%
60%
,
rgba
(
20
,
8
,
8
,
0.8
)
0%
,
transparent
60%
),
var
(
--bg
);
will-change
:
transform
}
.chapter-hero-grain
{
position
:
absolute
;
inset
:
0
;
background-image
:
url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='turbulence' baseFrequency='0.02' numOctaves='3' seed='3'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)
'/></svg>");opacity:.4;mix-blend-mode:multiply}.chapter-hero-content{position:relative;z-index:2;text-align:center;max-width:800px;padding:0 40px}.chapter-numeral-frame{position:relative;width:280px;height:280px;margin:0 auto 48px;display:flex;align-items:center;justify-content:center}.chapter-numeral-frame svg.ring{position:absolute;inset:0;width:100%;height:100%;animation:slow-rotate 120s linear infinite}.chapter-numeral{font-family:var(--font-display);font-size:180px;font-weight:300;font-style:italic;color:var(--accent);line-height:1;letter-spacing:-0.02em;text-shadow:0 0 40px rgba(185,28,28,.4);position:relative;z-index:2}@keyframes slow-rotate{to{transform:rotate(360deg)}}.chapter-kicker{font-family:var(--font-mono);font-size:12px;letter-spacing:.4em;text-transform:uppercase;color:var(--ink-dim);margin-bottom:16px}.chapter-kicker .accent{color:var(--accent)}.chapter-title{font-family:var(--font-display);font-size:clamp(50px,7.8vw,108px);font-style:italic;font-weight:400;font-weight:400;line-height:1.05;letter-spacing:-0.02em;color:var(--paper);margin-bottom:32px}.chapter-title .typed-cursor{display:inline-block;width:.5ch;background:var(--accent);animation:blink .8s steps(2, end) infinite;margin-left:4px;height:.9em;vertical-align:-0.1em}@keyframes blink{50%{opacity:0}}.chapter-meta{display:flex;align-items:center;justify-content:center;gap:24px;font-family:var(--font-mono);font-size:11px;letter-spacing:.25em;text-transform:uppercase;color:var(--ink-faint)}.chapter-meta .dot{color:var(--accent)}.scroll-cue{position:absolute;bottom:40px;left:50%;transform:translateX(-50%);font-family:var(--font-mono);font-size:10px;letter-spacing:.3em;text-transform:uppercase;color:var(--ink-faint);display:flex;flex-direction:column;align-items:center;gap:10px;animation:bob 2.5s ease-in-out infinite}.scroll-cue::after{content:"";width:1px;height:32px;background:linear-gradient(to bottom, var(--accent), transparent)}@keyframes bob{0%,100%{transform:translate(-50%, 0);opacity:.6}50%{transform:translate(-50%, 6px);opacity:1}}
p{line-height:1.75;text-wrap:pretty;position:relative}.chapter-body{margin:0 auto;position:relative}.chapter-body p{color:var(--ink);margin-bottom:1.6em}.chapter-body .prose p,.chapter-body .pinned-image-content p{text-indent:1rem}.chapter-body .column-container{margin:0 auto;padding:0 40px;max-width:680px}.chapter-body .pull{font-family:var(--font-display);font-size:1.7rem;font-style:italic;font-weight:400;font-weight:400;line-height:1.25;color:var(--paper);margin:80px -40px;padding:0 40px;position:relative;text-wrap:balance}.chapter-body .pull p{line-height:1.25}.chapter-body .pull em,.chapter-body .pull i{font-style:normal}.chapter-body .pull::before{content:"";position:absolute;left:2px;top:0;bottom:0;width:2px;background:var(--accent)}.chapter-body .key-line,.chapter-body em{font-style:italic;color:var(--accent-bright)}.prose.capitalise{padding-top:120px}.prose.capitalise p:first-of-type{text-indent:0}
.prose.capitalise p:first-of-type::first-letter{font-family:var(--font-display);font-size:5.5em;font-style:italic;font-weight:400;font-weight:400;float:left;line-height:.85;margin:.05em .12em 0 -0.05em;color:var(--accent)}.pinned-text-section{height:250vh;position:relative;margin:var(--section-margin-bottom) 0}.pinned-text-stage{position:-webkit-sticky;position:sticky;top:0;height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;background:var(--bg-2)}.pinned-text-bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.5;filter:contrast(1.2) brightness(0.5)}.pinned-text-bg.t1{background:radial-gradient(circle at 20% 80%, rgba(185, 28, 28, 0.3), transparent 40%),radial-gradient(circle at 80% 20%, rgba(40, 12, 12, 0.8), transparent 50%),linear-gradient(180deg, #0a0707 0%, #1a0a0a 50%, #0a0707 100%)}.pinned-text-overlay{position:absolute;inset:0;background-image:repeating-linear-gradient(90deg, transparent 0, transparent 80px, rgba(232, 226, 214, 0.02) 80px, rgba(232, 226, 214, 0.02) 81px)}.pinned-text-copy{position:relative;z-index:2;max-width:800px;padding:0 40px;text-align:center}.pinned-text-copy h2{font-family:var(--font-display);font-size:clamp(40px,6vw,72px);font-style:italic;font-weight:400;font-weight:400;line-height:1.1;color:var(--paper);margin-bottom:32px;text-wrap:balance}.pinned-text-copy p{color:var(--ink-dim);max-width:520px;margin:0 auto}.pinned-image-section{position:relative;-webkit-clip-path:inset(0);clip-path:inset(0);margin:var(--section-margin-bottom) 0}.pinned-image-stage{position:-webkit-sticky;position:sticky;top:0;height:100vh;overflow:hidden;margin-bottom:-100vh}.pinned-image-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(0.5)}.pinned-image-overlay{position:absolute;inset:0;background:linear-gradient(to bottom, transparent 30%, rgba(10, 7, 7, 0.85) 100%)}.pinned-image-content{position:relative;z-index:1;padding:50vh 40px 50vh;max-width:680px;margin:0 auto}.pinned-image-content p{color:var(--ink);margin-bottom:1.6em;text-wrap:pretty}.section-label{display:flex;align-items:center;gap:16px;max-width:680px;margin:0 auto 40px;padding:0 40px;font-family:var(--font-mono);font-size:11px;letter-spacing:.3em;text-transform:uppercase;color:var(--accent)}.section-label::before{content:"";width:24px;height:1px;background:var(--accent)}.texture-slot{width:100%;height:60vh;margin:var(--section-margin-bottom) 0;position:relative;overflow:hidden}.texture-slot.t-rust{background:radial-gradient(ellipse at 30% 50%, rgba(120, 30, 20, 0.4), transparent 60%),radial-gradient(ellipse at 70% 30%, rgba(40, 10, 10, 0.6), transparent 50%),linear-gradient(135deg, #1a0a0a, #0a0707)}.texture-slot.t-concrete{background:radial-gradient(circle at 20% 80%, rgba(60, 40, 35, 0.3), transparent 50%),radial-gradient(circle at 80% 20%, rgba(20, 14, 14, 0.8), transparent 60%),#0d0908}.texture-slot::after{content:"";position:absolute;inset:0;background-image:url("data:image/svg+xml;utf8,<svg xmlns='
http
://
www
.
w3
.
org
/
2000
/
svg
' width='
400
' height='
400
'><filter id='
n
'><feTurbulence type='
turbulence
' baseFrequency='
0.015
' numOctaves='
4
'/><feColorMatrix values='
0
0
0
0
0.3
0
0
0
0
0.1
0
0
0
0
0.05
0
0
0
0.7
0
'/></filter><rect width='
100%25
' height='
100%25
' filter='
url(%23n)
'
/
><
/
svg
>"
);
mix-blend-mode
:
multiply
;
opacity
:
.6
}
.texture-slot
.texture-caption
{
--h-spacing
:
60px
;
position
:
absolute
;
bottom
:
20px
;
left
:
var
(
--h-spacing
);
width
:
calc
(
80%
-
var
(
--h-spacing
));
font-family
:
var
(
--font-mono
);
font-size
:
16px
;
letter-spacing
:
.25em
;
text-transform
:
uppercase
;
color
:
var
(
--ink-dim
);
z-index
:
2
}
.note
{
margin
:
60px
auto
;
padding
:
32px
40px
;
border-left
:
2px
solid
var
(
--accent-deep
);
background
:
rgba
(
185
,
28
,
28
,
.04
)}
.note
,
.note
p
{
font-family
:
var
(
--font-mono
);
font-size
:
13px
;
line-height
:
1.7
;
color
:
var
(
--ink-dim
);
letter-spacing
:
.02em
}
.note
.note-label
{
display
:
block
;
font-family
:
var
(
--font-mono
);
font-size
:
10px
;
letter-spacing
:
.3em
;
text-transform
:
uppercase
;
color
:
var
(
--accent
);
margin-bottom
:
12px
}
.chapter-page
{
position
:
relative
}
.chapter-hero
{
height
:
100vh
;
min-height
:
700px
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
position
:
relative
;
overflow
:
hidden
}
.chapter-hero-bg
{
position
:
absolute
;
inset
:
-10%
;
background
:
radial-gradient
(
ellipse
at
30%
40%
,
rgba
(
90
,
14
,
14
,
0.6
)
0%
,
transparent
50%
),
radial-gradient
(
ellipse
at
70%
60%
,
rgba
(
20
,
8
,
8
,
0.8
)
0%
,
transparent
60%
),
var
(
--bg
);
will-change
:
transform
}
.chapter-hero-grain
{
position
:
absolute
;
inset
:
0
;
background-image
:
url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='turbulence' baseFrequency='0.02' numOctaves='3' seed='3'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)
'/></svg>");opacity:.4;mix-blend-mode:multiply}.chapter-hero-content{position:relative;z-index:2;text-align:center;max-width:800px;padding:0 40px}.chapter-numeral-frame{position:relative;width:280px;height:280px;margin:0 auto 48px;display:flex;align-items:center;justify-content:center}.chapter-numeral-frame svg.ring{position:absolute;inset:0;width:100%;height:100%;animation:slow-rotate 120s linear infinite}.chapter-numeral{font-family:var(--font-display);font-size:180px;font-weight:300;font-style:italic;color:var(--accent);line-height:1;letter-spacing:-0.02em;text-shadow:0 0 40px rgba(185,28,28,.4);position:relative;z-index:2}@keyframes slow-rotate{to{transform:rotate(360deg)}}.chapter-kicker{font-family:var(--font-mono);font-size:12px;letter-spacing:.4em;text-transform:uppercase;color:var(--ink-dim);margin-bottom:16px}.chapter-kicker .accent{color:var(--accent)}.chapter-title{font-family:var(--font-display);font-size:clamp(50px,7.8vw,108px);font-style:italic;font-weight:400;font-weight:400;line-height:1.05;letter-spacing:-0.02em;color:var(--paper);margin-bottom:32px}.chapter-title .typed-cursor{display:inline-block;width:.5ch;background:var(--accent);animation:blink .8s steps(2, end) infinite;margin-left:4px;height:.9em;vertical-align:-0.1em}@keyframes blink{50%{opacity:0}}.chapter-meta{display:flex;align-items:center;justify-content:center;gap:24px;font-family:var(--font-mono);font-size:11px;letter-spacing:.25em;text-transform:uppercase;color:var(--ink-faint)}.chapter-meta .dot{color:var(--accent)}.scroll-cue{position:absolute;bottom:40px;left:50%;transform:translateX(-50%);font-family:var(--font-mono);font-size:10px;letter-spacing:.3em;text-transform:uppercase;color:var(--ink-faint);display:flex;flex-direction:column;align-items:center;gap:10px;animation:bob 2.5s ease-in-out infinite}.scroll-cue::after{content:"";width:1px;height:32px;background:linear-gradient(to bottom, var(--accent), transparent)}@keyframes bob{0%,100%{transform:translate(-50%, 0);opacity:.6}50%{transform:translate(-50%, 6px);opacity:1}}
.chapter-body{margin:0 auto;position:relative}.chapter-body p{line-height:1.75;text-wrap:pretty;position:relative;color:var(--ink);margin-bottom:1.6em}.chapter-body .prose p,.chapter-body .pinned-image-content p{text-indent:1rem}.chapter-body .column-container{margin:0 auto;padding:0 40px;max-width:680px}.chapter-body .pull{font-family:var(--font-display);font-size:1.7rem;font-style:italic;font-weight:400;font-weight:400;line-height:1.25;color:var(--paper);margin:80px -40px;padding:0 40px;position:relative;text-wrap:balance}.chapter-body .pull p{line-height:1.25}.chapter-body .pull em,.chapter-body .pull i{font-style:normal}.chapter-body .pull::before{content:"";position:absolute;left:2px;top:0;bottom:0;width:2px;background:var(--accent)}.chapter-body .key-line,.chapter-body em{font-style:italic;color:var(--accent-bright)}.chapter-body .prose.capitalise{padding-top:120px}.chapter-body .prose.capitalise p:first-of-type{text-indent:0}.chapter-body
.prose.capitalise p:first-of-type::first-letter{font-family:var(--font-display);font-size:5.5em;font-style:italic;font-weight:400;font-weight:400;float:left;line-height:.85;margin:.05em .12em 0 -0.05em;color:var(--accent)}.pinned-text-section{height:250vh;position:relative;margin:var(--section-margin-bottom) 0}.pinned-text-stage{position:-webkit-sticky;position:sticky;top:0;height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;background:var(--bg-2)}.pinned-text-bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.5;filter:contrast(1.2) brightness(0.5)}.pinned-text-bg.t1{background:radial-gradient(circle at 20% 80%, rgba(185, 28, 28, 0.3), transparent 40%),radial-gradient(circle at 80% 20%, rgba(40, 12, 12, 0.8), transparent 50%),linear-gradient(180deg, #0a0707 0%, #1a0a0a 50%, #0a0707 100%)}.pinned-text-overlay{position:absolute;inset:0;background-image:repeating-linear-gradient(90deg, transparent 0, transparent 80px, rgba(232, 226, 214, 0.02) 80px, rgba(232, 226, 214, 0.02) 81px)}.pinned-text-copy{position:relative;z-index:2;max-width:800px;padding:0 40px;text-align:center}.pinned-text-copy h2{font-family:var(--font-display);font-size:clamp(40px,6vw,72px);font-style:italic;font-weight:400;font-weight:400;line-height:1.1;color:var(--paper);margin-bottom:32px;text-wrap:balance}.pinned-text-copy p{color:var(--ink-dim);max-width:520px;margin:0 auto}.pinned-image-section{position:relative;-webkit-clip-path:inset(0);clip-path:inset(0);margin:var(--section-margin-bottom) 0}.pinned-image-stage{position:-webkit-sticky;position:sticky;top:0;height:100vh;overflow:hidden;margin-bottom:-100vh}.pinned-image-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(0.5)}.pinned-image-overlay{position:absolute;inset:0;background:linear-gradient(to bottom, transparent 30%, rgba(10, 7, 7, 0.85) 100%)}.pinned-image-content{position:relative;z-index:1;padding:50vh 40px 50vh;max-width:680px;margin:0 auto}.pinned-image-content p{color:var(--ink);margin-bottom:1.6em;text-wrap:pretty}.section-label{display:flex;align-items:center;gap:16px;max-width:680px;margin:0 auto 40px;padding:0 40px;font-family:var(--font-mono);font-size:11px;letter-spacing:.3em;text-transform:uppercase;color:var(--accent)}.section-label::before{content:"";width:24px;height:1px;background:var(--accent)}.texture-slot{width:100%;height:60vh;margin:var(--section-margin-bottom) 0;position:relative;overflow:hidden}.texture-slot.t-rust{background:radial-gradient(ellipse at 30% 50%, rgba(120, 30, 20, 0.4), transparent 60%),radial-gradient(ellipse at 70% 30%, rgba(40, 10, 10, 0.6), transparent 50%),linear-gradient(135deg, #1a0a0a, #0a0707)}.texture-slot.t-concrete{background:radial-gradient(circle at 20% 80%, rgba(60, 40, 35, 0.3), transparent 50%),radial-gradient(circle at 80% 20%, rgba(20, 14, 14, 0.8), transparent 60%),#0d0908}.texture-slot::after{content:"";position:absolute;inset:0;background-image:url("data:image/svg+xml;utf8,<svg xmlns='
http
://
www
.
w3
.
org
/
2000
/
svg
' width='
400
' height='
400
'><filter id='
n
'><feTurbulence type='
turbulence
' baseFrequency='
0.015
' numOctaves='
4
'/><feColorMatrix values='
0
0
0
0
0.3
0
0
0
0
0.1
0
0
0
0
0.05
0
0
0
0.7
0
'/></filter><rect width='
100%25
' height='
100%25
' filter='
url(%23n)
'
/
><
/
svg
>"
);
mix-blend-mode
:
multiply
;
opacity
:
.6
}
.texture-slot
.texture-caption
{
--h-spacing
:
60px
;
position
:
absolute
;
bottom
:
20px
;
left
:
var
(
--h-spacing
);
width
:
calc
(
80%
-
var
(
--h-spacing
));
font-family
:
var
(
--font-mono
);
font-size
:
16px
;
letter-spacing
:
.25em
;
text-transform
:
uppercase
;
color
:
var
(
--ink-dim
);
z-index
:
2
}
.note
{
margin
:
60px
auto
;
padding
:
32px
40px
;
border-left
:
2px
solid
var
(
--accent-deep
);
background
:
rgba
(
185
,
28
,
28
,
.04
)}
.note
,
.note
p
{
font-family
:
var
(
--font-mono
);
font-size
:
13px
;
line-height
:
1.7
;
color
:
var
(
--ink-dim
);
letter-spacing
:
.02em
}
.note
.note-label
{
display
:
block
;
font-family
:
var
(
--font-mono
);
font-size
:
10px
;
letter-spacing
:
.3em
;
text-transform
:
uppercase
;
color
:
var
(
--accent
);
margin-bottom
:
12px
}
/*# sourceMappingURL=chapter.css.map */
/*# sourceMappingURL=chapter.css.map */
\ No newline at end of file
www/assets/css/templates/chapter.css.map
View file @
af3182bb
{"version":3,"sources":["../../../../src/css/templates/chapter.scss","../../../../src/css/_mixins.scss"],"names":[],"mappings":"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","file":"chapter.css"}
{"version":3,"sources":["../../../../src/css/templates/chapter.scss","../../../../src/css/_mixins.scss"],"names":[],"mappings":"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","file":"chapter.css"}
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment