Blog JSON system #1

Merged
dangrubbb merged 5 commits from OpenClaw into main 2026-02-28 21:57:54 +00:00
7 changed files with 252 additions and 11 deletions
Showing only changes of commit 447265f7ed - Show all commits

View File

@ -229,12 +229,16 @@ a:focus-visible {
} }
.blog-post { .blog-post {
margin: 40px 0; margin: 40px auto;
padding: 20px; padding: 20px;
border: 1px solid rgba(155, 169, 180, 0.2); border: 1px solid rgba(155, 169, 180, 0.2);
border-radius: 4px; border-radius: 4px;
background: linear-gradient(135deg, rgba(13, 10, 20, 0.4), rgba(50, 30, 80, 0.2)); background: linear-gradient(135deg, rgba(13, 10, 20, 0.4), rgba(50, 30, 80, 0.2));
scroll-margin-top: 100px; scroll-margin-top: 100px;
display: flex;
flex-direction: column;
align-items: center;
max-width: 700px;
} }
.blog-post-title { .blog-post-title {
@ -256,9 +260,9 @@ a:focus-visible {
color: #9d9aa4; color: #9d9aa4;
font-size: 0.95rem; font-size: 0.95rem;
line-height: 1.6; line-height: 1.6;
margin: 20px auto; margin: 20px 0;
text-align: center; text-align: center;
max-width: 600px; width: 100%;
} }
.blog-post-content p { .blog-post-content p {