Commit ·
9276c57
1
Parent(s): 333c3d4
Make title white and add subtitle for better readability
Browse files- Changed h1 from gradient to solid white for better contrast
- Added subtitle: 'A pattern for dynamic multiagent crew assembly'
- Styled subtitle with italic, muted color, and larger font size
- source/README.md +2 -0
- style.css +11 -5
source/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
# Claude Agent "Picker" Pattern (Claude Code)
|
| 2 |
|
|
|
|
|
|
|
| 3 |

|
| 4 |

|
| 5 |

|
|
|
|
| 1 |
# Claude Agent "Picker" Pattern (Claude Code)
|
| 2 |
|
| 3 |
+
A pattern for dynamic multiagent crew assembly
|
| 4 |
+
|
| 5 |

|
| 6 |

|
| 7 |

|
style.css
CHANGED
|
@@ -81,14 +81,20 @@ body {
|
|
| 81 |
#content h1 {
|
| 82 |
font-size: 2.75rem;
|
| 83 |
font-weight: 800;
|
| 84 |
-
|
| 85 |
-
-
|
| 86 |
-
-webkit-text-fill-color: transparent;
|
| 87 |
-
background-clip: text;
|
| 88 |
-
margin-bottom: 1.5rem;
|
| 89 |
line-height: 1.2;
|
| 90 |
}
|
| 91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
#content h2 {
|
| 93 |
font-size: 2.25rem;
|
| 94 |
font-weight: 700;
|
|
|
|
| 81 |
#content h1 {
|
| 82 |
font-size: 2.75rem;
|
| 83 |
font-weight: 800;
|
| 84 |
+
color: var(--text-primary);
|
| 85 |
+
margin-bottom: 0.5rem;
|
|
|
|
|
|
|
|
|
|
| 86 |
line-height: 1.2;
|
| 87 |
}
|
| 88 |
|
| 89 |
+
/* Subtitle styling */
|
| 90 |
+
#content h1 + p {
|
| 91 |
+
font-size: 1.375rem;
|
| 92 |
+
color: var(--text-muted);
|
| 93 |
+
font-weight: 500;
|
| 94 |
+
margin-bottom: 2.5rem;
|
| 95 |
+
font-style: italic;
|
| 96 |
+
}
|
| 97 |
+
|
| 98 |
#content h2 {
|
| 99 |
font-size: 2.25rem;
|
| 100 |
font-weight: 700;
|