Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 1 | .forum-page { |
| 2 | color: #fff; |
Krishya | 1300cad | 2025-04-20 22:16:45 +0800 | [diff] [blame] | 3 | background-color: #4A3B34; |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 4 | min-height: 100vh; |
| 5 | font-family: Arial, sans-serif; |
| 6 | } |
| 7 | |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 8 | .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 { |
Krishya | 1300cad | 2025-04-20 22:16:45 +0800 | [diff] [blame] | 19 | text-decoration: none; /* 移除链接的下划线 */ |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 20 | background-color: #4A3B34; |
| 21 | padding: 15px; |
| 22 | border-radius: 10px; |
| 23 | position: relative; |
| 24 | } |
| 25 | |
| 26 | .post-card-top { |
| 27 | display: flex; |
| 28 | justify-content: space-between; |
| 29 | align-items: center; |
| 30 | } |
| 31 | |
| 32 | .user-info { |
| 33 | display: flex; |
| 34 | align-items: center; |
| 35 | } |
| 36 | |
| 37 | .avatar { |
| 38 | width: 36px; |
| 39 | height: 36px; |
| 40 | border-radius: 50%; |
| 41 | margin-right: 10px; |
| 42 | } |
| 43 | |
| 44 | .nickname { |
| 45 | font-weight: bold; |
| 46 | } |
| 47 | |
| 48 | .cover-image { |
| 49 | max-height: 80px; |
| 50 | max-width: 120px; |
| 51 | object-fit: cover; |
| 52 | border-radius: 6px; |
| 53 | } |
| 54 | |
| 55 | .post-meta { |
| 56 | font-size: 12px; |
| 57 | margin-top: 5px; |
| 58 | color: #ddd; |
| 59 | } |
| 60 | |
| 61 | .post-actions { |
| 62 | display: flex; |
| 63 | gap: 15px; |
| 64 | margin: 10px 0; |
| 65 | } |
| 66 | |
| 67 | .icon-btn { |
| 68 | display: flex; |
| 69 | align-items: center; |
| 70 | gap: 5px; |
| 71 | background: none; |
| 72 | border: none; |
| 73 | color: #fff; |
| 74 | cursor: pointer; |
| 75 | } |
| 76 | |
| 77 | .btn-secondary { |
| 78 | display: inline-block; |
| 79 | background: #888; |
| 80 | color: #fff; |
| 81 | padding: 6px 12px; |
| 82 | text-decoration: none; |
| 83 | border-radius: 5px; |
| 84 | margin-top: 10px; |
| 85 | } |
| 86 | |
| 87 | .pagination { |
| 88 | margin-top: 20px; |
| 89 | display: flex; |
| 90 | justify-content: center; |
| 91 | gap: 10px; |
| 92 | } |
| 93 | |
| 94 | .error-text { |
| 95 | color: red; |
| 96 | } |
Krishya | 1300cad | 2025-04-20 22:16:45 +0800 | [diff] [blame] | 97 | |
| 98 | .toolbar { |
| 99 | display: flex; |
| 100 | /* justify-content: space-between; |
| 101 | align-items: center; */ |
| 102 | padding: 16px 20px; |
| 103 | } |
| 104 | |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 105 | |