Krishya | 6bf199c | 2025-06-06 21:14:23 +0800 | [diff] [blame^] | 1 | .user-dynamics-container { |
2 | padding: 40px 10% 40px 5%; | ||||
3 | max-width: 900px; | ||||
4 | } | ||||
5 | |||||
6 | .user-dynamics-title { | ||||
7 | font-size: 24px; | ||||
8 | font-weight: bold; | ||||
9 | margin-bottom: 20px; | ||||
10 | } | ||||
11 | |||||
12 | .user-dynamics-loading, | ||||
13 | .user-dynamics-empty { | ||||
14 | font-size: 16px; | ||||
15 | color: #888; | ||||
16 | margin-top: 20px; | ||||
17 | } | ||||
18 | |||||
19 | .dynamic-card { | ||||
20 | background: #fff; | ||||
21 | border: 1px solid #eee; | ||||
22 | border-radius: 12px; | ||||
23 | padding: 20px; | ||||
24 | margin-bottom: 20px; | ||||
25 | box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); | ||||
26 | } | ||||
27 | |||||
28 | .dynamic-header { | ||||
29 | display: flex; | ||||
30 | align-items: center; | ||||
31 | margin-bottom: 10px; | ||||
32 | } | ||||
33 | |||||
34 | .dynamic-avatar { | ||||
35 | width: 48px; | ||||
36 | height: 48px; | ||||
37 | border-radius: 50%; | ||||
38 | margin-right: 12px; | ||||
39 | } | ||||
40 | |||||
41 | .dynamic-userinfo { | ||||
42 | display: flex; | ||||
43 | flex-direction: column; | ||||
44 | } | ||||
45 | |||||
46 | .dynamic-username { | ||||
47 | font-weight: bold; | ||||
48 | font-size: 16px; | ||||
49 | } | ||||
50 | |||||
51 | .dynamic-time { | ||||
52 | font-size: 12px; | ||||
53 | color: #999; | ||||
54 | } | ||||
55 | |||||
56 | .dynamic-title { | ||||
57 | font-size: 18px; | ||||
58 | margin: 10px 0 5px; | ||||
59 | } | ||||
60 | |||||
61 | .dynamic-content p { | ||||
62 | font-size: 15px; | ||||
63 | line-height: 1.5; | ||||
64 | } | ||||
65 | |||||
66 | .dynamic-images { | ||||
67 | display: flex; | ||||
68 | flex-wrap: wrap; | ||||
69 | margin-top: 10px; | ||||
70 | gap: 10px; | ||||
71 | } | ||||
72 | |||||
73 | .dynamic-images img { | ||||
74 | width: 120px; | ||||
75 | height: 120px; | ||||
76 | object-fit: cover; | ||||
77 | border-radius: 8px; | ||||
78 | border: 1px solid #ddd; | ||||
79 | } |