-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
160 lines (144 loc) · 5.77 KB
/
Copy paththeme.css
File metadata and controls
160 lines (144 loc) · 5.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* ─────────────────────────────────────────────────────────────
RockBot talk theme — dark navy + orange/gold + cyan glow
Palette pulled from the RockBot logo.
───────────────────────────────────────────────────────────── */
:root {
--bg: #0a1422;
--bg-2: #0d1b2a;
--panel: #122236;
--ink: #e8eef5;
--ink-dim: #93a6bd;
--steel: #8a9bb0;
--gold: #f4a13c;
--gold-2: #e8821e;
--cyan: #2ec4ff;
--cyan-2: #1ba3e0;
--green: #4fd18b;
--red: #ff6b6b;
--line: #24405e;
}
.reveal-viewport { background: var(--bg); }
.reveal {
font-family: "Inter", "Segoe UI", system-ui, sans-serif;
color: var(--ink);
font-size: 32px;
}
/* subtle vignette + grid texture on every slide background */
.reveal .backgrounds { background:
radial-gradient(ellipse at 50% 0%, #13263d 0%, var(--bg) 70%); }
.reveal h1, .reveal h2, .reveal h3 {
color: var(--ink);
font-weight: 700;
text-transform: none;
letter-spacing: -0.01em;
line-height: 1.1;
}
.reveal h1 { font-size: 2.1em; }
.reveal h2 { font-size: 1.5em; }
.reveal h3 { font-size: 1.1em; color: var(--gold); }
.reveal a { color: var(--cyan); }
.reveal strong { color: var(--gold); font-weight: 700; }
.reveal em { color: var(--cyan); font-style: normal; }
.reveal .slide-number { color: var(--ink-dim); background: transparent; }
/* accent kicker above titles */
.kicker {
text-transform: uppercase;
letter-spacing: 0.22em;
font-size: 0.5em;
color: var(--cyan);
font-weight: 600;
margin-bottom: 0.4em;
}
/* the master equation */
.equation {
font-size: 1.2em;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
gap: 0.4em;
flex-wrap: wrap;
}
.equation .term {
padding: 0.35em 0.7em;
border-radius: 14px;
border: 2px solid var(--line);
background: var(--panel);
transition: all .4s ease;
}
.equation .op { color: var(--ink-dim); font-weight: 400; }
.term.harness { border-color: var(--gold); box-shadow: 0 0 26px -8px var(--gold); color: var(--gold); }
.term.llm { border-color: var(--cyan); box-shadow: 0 0 26px -8px var(--cyan); color: var(--cyan); }
.term.directive{ border-color: var(--green); box-shadow: 0 0 26px -8px var(--green); color: var(--green); }
.term.agent { border-color: var(--ink-dim); color: var(--ink); }
/* generic cards */
.cards { display: flex; gap: 0.7em; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.card {
background: var(--panel);
border: 1px solid var(--line);
border-radius: 16px;
padding: 0.8em 1em;
text-align: left;
flex: 1 1 0;
min-width: 220px;
}
.card .card-h { color: var(--gold); font-weight: 700; font-size: 0.95em; margin-bottom: 0.25em; display:flex; align-items:center; gap:.4em;}
.card .card-b { color: var(--ink-dim); font-size: 0.66em; line-height: 1.45; }
.card.cyan .card-h { color: var(--cyan); }
.card.green .card-h { color: var(--green); }
/* pill / tag */
.pill {
display:inline-block; padding:0.18em 0.7em; border-radius:999px;
border:1px solid var(--line); background:var(--bg-2);
font-size:0.6em; color:var(--ink-dim); margin:0.15em;
}
.pill.gold { color:var(--gold); border-color:var(--gold); }
.pill.cyan { color:var(--cyan); border-color:var(--cyan); }
.lead { color: var(--ink-dim); font-size: 0.9em; line-height: 1.5; }
.big { font-size: 1.4em; font-weight: 700; }
.dim { color: var(--ink-dim); }
.note { font-size: 0.6em; color: var(--steel); }
.reveal section img.logo { border:none; box-shadow:none; background:none; }
/* footer brand mark */
.brandmark {
position: fixed; bottom: 14px; left: 18px; z-index: 30;
display:flex; align-items:center; gap:8px;
font-size: 13px; color: var(--ink-dim); letter-spacing:.04em;
}
.brandmark img { width: 26px; height: 26px; }
/* SVG diagram defaults */
.reveal svg text { font-family: "Inter","Segoe UI",sans-serif; fill: var(--ink); }
.reveal svg .lbl-dim { fill: var(--ink-dim); }
.reveal svg .lbl-gold { fill: var(--gold); }
.reveal svg .lbl-cyan { fill: var(--cyan); }
/* fragment that glows in rather than just appears */
.reveal .fragment.glow { opacity: 0; transition: all .5s ease; }
.reveal .fragment.glow.visible { opacity: 1; }
ul.clean { list-style: none; margin-left: 0; }
ul.clean li { margin: 0.5em 0; padding-left: 1.4em; position: relative; }
ul.clean li::before { content: "▹"; color: var(--gold); position: absolute; left: 0; }
/* ── context-window vertical stack (composition slide) ───────── */
.ctxwin {
display: flex; flex-direction: column; gap: 5px;
width: 97%; max-width: 1060px; margin: 0 auto;
}
.ctxlayer {
display: flex; align-items: center; justify-content: space-between; gap: 1em;
background: var(--panel);
border: 1px solid var(--line); border-left: 5px solid var(--line);
border-radius: 11px; padding: 0.3em 0.9em; text-align: left;
}
.ctxlayer .ctx-main { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.12em 0.5em; min-width: 0; }
.ctxlayer .ctx-title { font-weight: 700; font-size: 0.74em; white-space: nowrap; }
.ctxlayer .ctx-sub { color: var(--ink-dim); font-size: 0.6em; }
.ctxlayer .ctx-role {
font-family: "JetBrains Mono", monospace; font-size: 0.52em;
color: var(--steel); white-space: nowrap; opacity: 0.85; letter-spacing: 0.02em;
}
.ctx-edge { font-size: 0.56em; color: var(--steel); text-align: center; margin: 0.26em 0; letter-spacing: 0.05em; }
.ctx-edge.bottom { color: var(--gold); }
.ctx-divider {
text-align: center; font-size: 0.5em; color: var(--gold-2);
letter-spacing: 0.04em; font-weight: 600; text-transform: uppercase;
padding: 0.12em 0; margin: 1px 0;
}