ym923 | bfa214f | 2025-06-09 18:10:32 +0800 | [diff] [blame] | 1 | /* src/components/ActivityBoard.css */ |
| 2 | |
| 3 | .activity-card { |
| 4 | border-radius: 12px; |
| 5 | overflow: hidden; |
| 6 | transition: all 0.3s ease; |
| 7 | } |
| 8 | |
| 9 | .activity-card:hover { |
| 10 | box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); |
| 11 | transform: translateY(-4px); |
| 12 | } |
| 13 | |
| 14 | .activity-photo { |
| 15 | height: 180px; |
| 16 | width: 100%; |
| 17 | object-fit: cover; |
| 18 | border-radius: 8px 8px 0 0; |
| 19 | transition: transform 0.2s ease; |
| 20 | cursor: pointer; |
| 21 | } |
| 22 | |
| 23 | .activity-photo:hover { |
| 24 | transform: scale(1.03); |
| 25 | } |
| 26 | |
| 27 | .activity-title { |
| 28 | font-weight: 600; |
| 29 | font-size: 16px; |
| 30 | margin: 8px 0; |
| 31 | color: #1a1a1a; |
| 32 | } |
| 33 | |
| 34 | .loading-container { |
| 35 | display: flex; |
| 36 | justify-content: center; |
| 37 | padding: 50px 0; |
| 38 | } |