RSS and sitemap, etc

This commit is contained in:
Jade Ellis
2024-02-19 13:15:46 +00:00
parent ac2accc8ea
commit 0602eea898
6 changed files with 212 additions and 23 deletions
+22 -1
View File
@@ -11,7 +11,8 @@
--font-color-secondary: rgba(0, 0, 0, .6);
--font-family-base: Roboto, sans-serif;
--font-family-heading: "Sen", Roboto, sans-serif;
--border-radius: 8px
--border-radius: 8px;
--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
@media (prefers-color-scheme: dark) {
@@ -54,4 +55,24 @@ svg {
max-width: 1056px;
margin: 0 auto;
padding: 0 var(--spacing);
--edge-border-radius: var(--border-radius);
}
@media screen and (max-width: 320px) {
.main {
padding: 0 0;
--edge-border-radius: 0;
}
}
.card {
border-radius: var(--border-radius);
box-shadow: var(--shadow);
background-color: var(--surface-color);
}
.edge {
border-radius: var(--edge-border-radius);
}