| .create-post-page { | |
| display: flex; | |
| flex-direction: column; | |
| padding: 20px; | |
| gap: 20px; | |
| } | |
| .title-and-button { | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| } | |
| .title-input { | |
| flex: 1; | |
| height: 40px; | |
| padding: 0 10px; | |
| font-size: 16px; | |
| } | |
| .submit-button { | |
| height: 40px; | |
| padding: 0 20px; | |
| font-size: 16px; | |
| background-color: #409eff; | |
| color: white; | |
| border: none; | |
| border-radius: 4px; | |
| } | |
| .layout { | |
| display: flex; | |
| gap: 20px; | |
| } | |
| .main-content { | |
| flex: 3; | |
| } | |
| .content-editor { | |
| width: 100%; | |
| height: 650px; | |
| padding: 10px; | |
| font-size: 16px; | |
| border: 1px solid #ccc; | |
| } | |
| .sidebar-content { | |
| flex: 1; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 20px; | |
| } | |
| .sidebar-section { | |
| background: #f9f9f9; | |
| padding: 10px; | |
| border-radius: 6px; | |
| } | |
| .sidebar-section p { | |
| margin: 0 0 10px 0; | |
| } | |