Adds privacy policy

This commit is contained in:
Beau Findlay
2026-01-31 22:02:49 +00:00
parent fb438c8287
commit 9e282f7ce5
2 changed files with 75 additions and 2 deletions

View File

@@ -6,8 +6,6 @@ body {
font-family: var(--font-mono);
font-size: var(--font-size-base);
line-height: var(--line-height-normal);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Typography */
@@ -37,6 +35,28 @@ p {
margin-bottom: var(--space-4);
}
/* Lists */
ul {
list-style: none;
padding-left: var(--space-4);
}
ul li {
position: relative;
padding-left: var(--space-6);
margin-bottom: var(--space-3);
}
ul li::before {
content: ">";
position: absolute;
left: 0;
color: var(--color-slate-400);
font-size: var(--font-size-base);
line-height: 1.5;
font-weight: var(--font-weight-bold);
}
/* Links */
a {
color: var(--color-slate-50);