Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 1 | .forum-page { |
Krishya | dbfadaa | 2025-06-09 20:33:15 +0800 | [diff] [blame] | 2 | color: #453228; |
Krishya | f1d0ea8 | 2025-05-03 17:01:58 +0800 | [diff] [blame] | 3 | /* background-color: #5F4437; */ |
| 4 | /* background: linear-gradient(180deg, #5F4437, #9c737b); */ |
Krishya | dbfadaa | 2025-06-09 20:33:15 +0800 | [diff] [blame] | 5 | background: #f8f3ef; |
Krishya | f1d0ea8 | 2025-05-03 17:01:58 +0800 | [diff] [blame] | 6 | /* background-color: #5F4437; */ |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 7 | min-height: 100vh; |
| 8 | font-family: Arial, sans-serif; |
| 9 | } |
| 10 | |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 11 | .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 { |
Krishya | 1300cad | 2025-04-20 22:16:45 +0800 | [diff] [blame] | 22 | text-decoration: none; /* 移除链接的下划线 */ |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 23 | background-color: #5F4437; |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 24 | 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 | |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 40 | .nickname { |
| 41 | font-weight: bold; |
| 42 | } |
| 43 | |
Krishya | dbfadaa | 2025-06-09 20:33:15 +0800 | [diff] [blame] | 44 | .cover { |
| 45 | max-height: 320px; |
| 46 | max-width: 320px; |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 47 | 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 | } |
Krishya | 1300cad | 2025-04-20 22:16:45 +0800 | [diff] [blame] | 93 | |
| 94 | .toolbar { |
| 95 | display: flex; |
Krishya | 1300cad | 2025-04-20 22:16:45 +0800 | [diff] [blame] | 96 | padding: 16px 20px; |
| 97 | } |
| 98 | |
Krishya | e71688a | 2025-04-10 21:25:17 +0800 | [diff] [blame] | 99 | |