Krishya | 7ec1dd0 | 2025-04-19 15:29:03 +0800 | [diff] [blame^] | 1 | .create-post-page { |
2 | display: flex; | ||||
3 | flex-direction: column; | ||||
4 | padding: 20px; | ||||
5 | gap: 20px; | ||||
6 | } | ||||
7 | |||||
8 | .title-and-button { | ||||
9 | display: flex; | ||||
10 | align-items: center; | ||||
11 | gap: 10px; | ||||
12 | } | ||||
13 | |||||
14 | .title-input { | ||||
15 | flex: 1; | ||||
16 | height: 40px; | ||||
17 | padding: 0 10px; | ||||
18 | font-size: 16px; | ||||
19 | } | ||||
20 | |||||
21 | .submit-button { | ||||
22 | height: 40px; | ||||
23 | padding: 0 20px; | ||||
24 | font-size: 16px; | ||||
25 | background-color: #409eff; | ||||
26 | color: white; | ||||
27 | border: none; | ||||
28 | border-radius: 4px; | ||||
29 | } | ||||
30 | |||||
31 | .layout { | ||||
32 | display: flex; | ||||
33 | gap: 20px; | ||||
34 | } | ||||
35 | |||||
36 | .main-content { | ||||
37 | flex: 3; | ||||
38 | } | ||||
39 | |||||
40 | .content-editor { | ||||
41 | width: 100%; | ||||
42 | height: 650px; | ||||
43 | padding: 10px; | ||||
44 | font-size: 16px; | ||||
45 | border: 1px solid #ccc; | ||||
46 | } | ||||
47 | |||||
48 | .sidebar-content { | ||||
49 | flex: 1; | ||||
50 | display: flex; | ||||
51 | flex-direction: column; | ||||
52 | gap: 20px; | ||||
53 | } | ||||
54 | |||||
55 | .sidebar-section { | ||||
56 | background: #f9f9f9; | ||||
57 | padding: 10px; | ||||
58 | border-radius: 6px; | ||||
59 | } | ||||
60 | |||||
61 | .sidebar-section p { | ||||
62 | margin: 0 0 10px 0; | ||||
63 | } | ||||
64 |