Merge commit '3773105a62c3ce68b556036a604aa53c673ac5f0'

This commit is contained in:
Alexa Amundson
2025-11-21 13:58:17 -06:00

View File

@@ -9,6 +9,9 @@
<style> <style>
:root { :root {
--radius-pill: 999px; --radius-pill: 999px;
--color-status-green: rgba(34, 197, 94, 0.4);
--color-status-green-light: rgba(34, 197, 94, 0.1);
--color-status-green-solid: #22c55e;
} }
body { body {
margin: 0; margin: 0;
@@ -41,6 +44,9 @@
border-radius: var(--radius-pill); border-radius: var(--radius-pill);
background: rgba(34, 197, 94, 0.1); background: rgba(34, 197, 94, 0.1);
border: 1px solid rgba(34, 197, 94, 0.4); border: 1px solid rgba(34, 197, 94, 0.4);
border-radius: 999px;
background: var(--color-status-green-light);
border: 1px solid var(--color-status-green);
color: #bbf7d0; color: #bbf7d0;
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
} }
@@ -95,6 +101,9 @@
border-radius: var(--radius-pill); border-radius: var(--radius-pill);
background: #22c55e; background: #22c55e;
box-shadow: 0 0 12px #22c55e; box-shadow: 0 0 12px #22c55e;
border-radius: 999px;
background: var(--color-status-green-solid);
box-shadow: 0 0 12px var(--color-status-green-solid);
} }
.footnote { .footnote {
margin-top: 1rem; margin-top: 1rem;