blob: 476cc86859d24d8664ee67db41a0f6dc7407f24c [file] [log] [blame]
Krishyaaffe8102025-06-08 00:44:46 +08001/* src/pages/UserInfo.css */
2.user-info-container {
3 display: flex;
4 justify-content: center;
5 padding: 40px 20px;
6 background-color: #f8f1e9; /* 米色背景 */
7 min-height: 100vh;
8}
9
10.user-card {
11 background-color: #fff0f5; /* 淡粉背景 */
12 border-radius: 16px;
13 padding: 30px;
14 max-width: 500px;
15 width: 100%;
16 box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
17 text-align: center;
18 font-family: 'Segoe UI', sans-serif;
19}
20
21.avatar {
22 width: 120px;
23 height: 120px;
24 object-fit: cover;
25 border-radius: 50%;
26 border: 4px solid #d2b48c; /* 浅棕色边框 */
27 margin-bottom: 20px;
28}
29
30.nickname {
31 font-size: 24px;
32 font-weight: bold;
33 color: #8b4513; /* 深棕色 */
34 margin-bottom: 8px;
35}
36
37.bio {
38 color: #a0522d; /* 棕红色 */
39 font-style: italic;
40 margin-bottom: 20px;
41}
42
43.details {
44 text-align: left;
45 font-size: 16px;
46 line-height: 1.8;
47 color: #5c4033;
48}
49
50.error {
51 color: red;
52 text-align: center;
53 margin-top: 40px;
54}
55
56.loading {
57 text-align: center;
58 font-size: 18px;
59 margin-top: 40px;
60 color: #8b4513;
61}