Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions blogWrite.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,18 @@

/* Layout */
.writing-layout {
display: grid;
grid-template-columns: 1fr 400px;
gap: 30px;
align-items: start;
}
background: #ffffff; /* white background for the blog section */
}

.blog-form-wrapper {
background: #ffffff; /* keep form white */
max-width: 800px;
margin: 0 auto;
width: 100%;
padding: 20px; /* optional, adds spacing inside */
border-radius: 8px; /* optional, keeps smooth corners */
box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* optional, adds subtle depth */
}

/* Form Section */
.form-section {
Expand Down