diff --git a/app/blog/DjBlogMain.tsx b/app/blog/DjBlogMain.tsx index fffd4b1..3713498 100644 --- a/app/blog/DjBlogMain.tsx +++ b/app/blog/DjBlogMain.tsx @@ -5,14 +5,21 @@ import { RouterLink } from "vue-router"; import { addCSS, css } from "@/util.ts"; const style = css` -.entry { - display: flex; - flex-direction: row; - gap: 4px; -} +.dj-blog-main { + .entry { + display: flex; + flex-direction: row; + gap: 4px; + } -h2 { - margin-top: 0; + em { + color: gray; + } + + + h2 { + margin-top: 0; + } } `; @@ -26,16 +33,17 @@ export default defineComponent({ await blogEntries.done; return () => <> -
+

Entries

diff --git a/app/blog/DjBlogRoot.tsx b/app/blog/DjBlogRoot.tsx index 752303b..ee2e0c5 100644 --- a/app/blog/DjBlogRoot.tsx +++ b/app/blog/DjBlogRoot.tsx @@ -49,7 +49,7 @@ body { } footer { - width: 800px; + width: 100%; font-style: italic; margin-left: 10px; margin-bottom: 25px; @@ -65,6 +65,14 @@ body { } } + ul { + padding-left: 30px; + } + + li { + list-style: disclosure-closed; + } + nav { width: 100%; font-size: 40px; @@ -79,11 +87,8 @@ body { } @media only screen and (max-width: 1024px) { - width: 100%; - - .container { - padding: 10px; - } + width: calc(100% - 20px); + padding: 10px; .dj-title { margin-right: 30px;