blob: 3f26e177031ca77890c3b0722c03ffaa8497c1e4 [file] [log] [blame]
Krishyae71688a2025-04-10 21:25:17 +08001.forum-page {
2 color: #fff;
3 background-color: #2d2d2d;
4 min-height: 100vh;
5 font-family: Arial, sans-serif;
6 }
7
Krishyae71688a2025-04-10 21:25:17 +08008 .forum-content {
9 padding: 20px;
10 }
11
12 .post-list {
13 display: flex;
14 flex-direction: column;
15 gap: 20px;
16 }
17
18 .post-card {
19 background-color: #4A3B34;
20 padding: 15px;
21 border-radius: 10px;
22 position: relative;
23 }
24
25 .post-card-top {
26 display: flex;
27 justify-content: space-between;
28 align-items: center;
29 }
30
31 .user-info {
32 display: flex;
33 align-items: center;
34 }
35
36 .avatar {
37 width: 36px;
38 height: 36px;
39 border-radius: 50%;
40 margin-right: 10px;
41 }
42
43 .nickname {
44 font-weight: bold;
45 }
46
47 .cover-image {
48 max-height: 80px;
49 max-width: 120px;
50 object-fit: cover;
51 border-radius: 6px;
52 }
53
54 .post-meta {
55 font-size: 12px;
56 margin-top: 5px;
57 color: #ddd;
58 }
59
60 .post-actions {
61 display: flex;
62 gap: 15px;
63 margin: 10px 0;
64 }
65
66 .icon-btn {
67 display: flex;
68 align-items: center;
69 gap: 5px;
70 background: none;
71 border: none;
72 color: #fff;
73 cursor: pointer;
74 }
75
76 .btn-secondary {
77 display: inline-block;
78 background: #888;
79 color: #fff;
80 padding: 6px 12px;
81 text-decoration: none;
82 border-radius: 5px;
83 margin-top: 10px;
84 }
85
86 .pagination {
87 margin-top: 20px;
88 display: flex;
89 justify-content: center;
90 gap: 10px;
91 }
92
93 .error-text {
94 color: red;
95 }
96