Theme fixing

This commit is contained in:
Jim Shepich III 2026-02-03 01:45:29 -05:00
parent a0390b9591
commit 9641c572c1
3 changed files with 20 additions and 2 deletions

View File

@ -38,7 +38,7 @@ def copy_assets(site: SiteConfig) -> None:
# Construct the destination path analogous to the source path # Construct the destination path analogous to the source path
# but in the web root instead of the build cache. # but in the web root instead of the build cache.
destination = f'{site.web_root}/What the program does{a.lstrip("/")}' destination = f'{site.web_root}/{a.lstrip("/")}'
# Delete existing files. # Delete existing files.
shutil.rmtree(destination, ignore_errors=True) shutil.rmtree(destination, ignore_errors=True)

View File

@ -2,4 +2,5 @@ ipykernel
markdown markdown
pyyaml pyyaml
rfeed rfeed
dotmap dotmap
pydantic

View File

@ -205,3 +205,20 @@ span img.rss-icon{
float: right; float: right;
} }
blockquote {
border-color: var(--azure);
/* border-image: var(--silver) 1; */
border-style: solid;
border-left-width: 0.25em;
padding: 0.25em 0 0.25em 1em;
padding-left: 1em;
margin-bottom: 1em;
}
blockquote > p:last-of-type {
margin-bottom: 0;
}
img {
width: 50vw;
}