Redesign step labels & footnotes to match site palette

Step labels now use primary green (#43a047) background with white text,
bold weight, letter-spacing, & border-radius matching Pico conventions.
Footnote links switch from lime (#CDDC39) to primary green for proper
contrast in both light & dark modes. Callout boxes gain subtle
border-radius on right side. Styleguide color swatches updated.
This commit is contained in:
russell@unturf.com 2026-02-27 09:43:31 -05:00
parent aec82574e0
commit 957e418fe0
2 changed files with 16 additions and 12 deletions

View file

@ -9,8 +9,8 @@
--primary: #43a047;
/* step label */
--step-bg: #263238;
--step-text: #CDDC39;
--step-bg: var(--primary);
--step-text: #fff;
/* callout boxes */
--honest-border: #F44336;
@ -21,9 +21,9 @@
--warning-bg: rgba(255, 152, 0, 0.05);
/* footnotes */
--footnote-link: #CDDC39;
--footnote-highlight-bg: rgba(205, 220, 57, 0.1);
--footnote-highlight-border: #CDDC39;
--footnote-link: var(--primary);
--footnote-highlight-bg: rgba(67, 160, 71, 0.1);
--footnote-highlight-border: var(--primary);
/* diagrams */
--diagram-caption: #888;
@ -102,8 +102,11 @@
display: inline-block;
background: var(--step-bg);
color: var(--step-text);
padding: 0.2em 0.6em;
font-size: 0.8em;
padding: 0.3em 0.75em;
font-size: 0.75em;
font-weight: bold;
letter-spacing: 0.08em;
border-radius: 0.25rem;
margin-bottom: 0.5em;
}
@ -114,8 +117,9 @@
.warning-box {
border-left-width: 4px;
border-left-style: solid;
padding: 0.5em 1em;
padding: 0.75em 1em;
margin: 1em 0;
border-radius: 0 0.25rem 0.25rem 0;
}
.honest-box { border-color: var(--honest-border); background: var(--honest-bg); }