blob: 4eb280fac0a623121c9378c1d6b2283c6b8242be [file] [log] [blame]
Krishyae71688a2025-04-10 21:25:17 +08001.forum-page {
Krishyadbfadaa2025-06-09 20:33:15 +08002 color: #453228;
Krishyaf1d0ea82025-05-03 17:01:58 +08003 /* background-color: #5F4437; */
4 /* background: linear-gradient(180deg, #5F4437, #9c737b); */
Krishyadbfadaa2025-06-09 20:33:15 +08005 background: #f8f3ef;
Krishyaf1d0ea82025-05-03 17:01:58 +08006 /* background-color: #5F4437; */
Krishyae71688a2025-04-10 21:25:17 +08007 min-height: 100vh;
8 font-family: Arial, sans-serif;
9 }
10
Krishyae71688a2025-04-10 21:25:17 +080011 .forum-content {
12 padding: 20px;
13 }
14
15 .post-list {
16 display: flex;
17 flex-direction: column;
18 gap: 20px;
19 }
20
21 .post-card {
Krishya1300cad2025-04-20 22:16:45 +080022 text-decoration: none; /* 移除链接的下划线 */
Krishyac0f7e9b2025-04-22 15:28:28 +080023 background-color: #5F4437;
Krishyae71688a2025-04-10 21:25:17 +080024 padding: 15px;
25 border-radius: 10px;
26 position: relative;
27 }
28
29 .post-card-top {
30 display: flex;
31 justify-content: space-between;
32 align-items: center;
33 }
34
35 .user-info {
36 display: flex;
37 align-items: center;
38 }
39
Krishyae71688a2025-04-10 21:25:17 +080040 .nickname {
41 font-weight: bold;
42 }
43
Krishyadbfadaa2025-06-09 20:33:15 +080044 .cover {
45 max-height: 320px;
46 max-width: 320px;
Krishyae71688a2025-04-10 21:25:17 +080047 object-fit: cover;
48 border-radius: 6px;
49 }
50
51 .post-meta {
52 font-size: 12px;
53 margin-top: 5px;
54 color: #ddd;
55 }
56
57 .post-actions {
58 display: flex;
59 gap: 15px;
60 margin: 10px 0;
61 }
62
63 .icon-btn {
64 display: flex;
65 align-items: center;
66 gap: 5px;
67 background: none;
68 border: none;
69 color: #fff;
70 cursor: pointer;
71 }
72
73 .btn-secondary {
74 display: inline-block;
75 background: #888;
76 color: #fff;
77 padding: 6px 12px;
78 text-decoration: none;
79 border-radius: 5px;
80 margin-top: 10px;
81 }
82
83 .pagination {
84 margin-top: 20px;
85 display: flex;
86 justify-content: center;
87 gap: 10px;
88 }
89
90 .error-text {
91 color: red;
92 }
Krishya1300cad2025-04-20 22:16:45 +080093
94 .toolbar {
95 display: flex;
Krishya1300cad2025-04-20 22:16:45 +080096 padding: 16px 20px;
97 }
98
Krishyae71688a2025-04-10 21:25:17 +080099