adjust css

This commit is contained in:
2022-12-12 20:39:21 -06:00
parent 65c055e8df
commit 9e65c16c2b
2 changed files with 27 additions and 21 deletions

View File

@@ -67,7 +67,7 @@ for file in $(ls "$BLOG_DIR/posts"); do
title=$(sed -n '3p' $target_file | tr -d '\n') title=$(sed -n '3p' $target_file | tr -d '\n')
content=$(sed -n '4,$p' $target_file | tr -d '\n') content=$(sed -n '4,$p' $target_file | tr -d '\n')
content=${content//&/&} content=${content//" & "/&}
content=${content//"'"/‘} content=${content//"'"/‘}
insert_post "$date" "$slug" "$title" "$content" insert_post "$date" "$slug" "$title" "$content"

View File

@@ -1,3 +1,9 @@
code {
color: #ebdbb2;
background-color: #282828;
padding: 2px;
}
body { body {
font-size: calc(14px + 0.11vw); font-size: calc(14px + 0.11vw);
width: clamp(373px, 60vw, 80vw); width: clamp(373px, 60vw, 80vw);