blob: 8ed86a7c2a6036351f1f0da5eb44ca774cd02f91 [file] [log] [blame]
San3yuan2534d422025-04-08 21:43:18 +08001.container {
2 display: flex;
3 flex-direction: row;
4 align-items: flex-start;
5 justify-content: space-between;
6 padding: 20px;
7 border: 1px solid #ccc;
8 border-radius: 10px;
San3yuan03ab0642025-04-29 18:00:25 +08009 background-color: var(--card-bg);
San3yuan2534d422025-04-08 21:43:18 +080010 width: 100%;
San3yuan6f2ed692025-04-16 20:24:49 +080011 height: 100%; /* Adjust height as needed */
San3yuan2534d422025-04-08 21:43:18 +080012 box-sizing: border-box;
San3yuan6f2ed692025-04-16 20:24:49 +080013 overflow:hidden;
San3yuan2534d422025-04-08 21:43:18 +080014}
15
16.left {
San3yuan6f2ed692025-04-16 20:24:49 +080017 border:1px solid #ccc;
San3yuan2534d422025-04-08 21:43:18 +080018 display: flex;
19 flex-direction: column;
20 align-items: center;
21 justify-content: flex-start;
San3yuan6f2ed692025-04-16 20:24:49 +080022 width: 35%; /* Adjust width for avatar section */
San3yuan2534d422025-04-08 21:43:18 +080023}
24
25.avatar {
San3yuan6f2ed692025-04-16 20:24:49 +080026 width: 100%;
27 height: 100%;
San3yuan2534d422025-04-08 21:43:18 +080028 border-radius: 50%;
29 object-fit: cover;
30 margin-bottom: 10px;
31}
32.right {
San3yuan6f2ed692025-04-16 20:24:49 +080033 border:1px solid #aaa;
San3yuan2534d422025-04-08 21:43:18 +080034 display: flex;
35 flex-direction: column;
San3yuan6f2ed692025-04-16 20:24:49 +080036 justify-content: flex-start;
San3yuan2534d422025-04-08 21:43:18 +080037 align-items: flex-start;
San3yuan6f2ed692025-04-16 20:24:49 +080038 width: 55%; /* Adjust width for info and button section */
San3yuan2534d422025-04-08 21:43:18 +080039}
40
41.info {
42 display: flex;
43 flex-direction: column;
44 align-items: flex-start;
San3yuan6f2ed692025-04-16 20:24:49 +080045 justify-content: flex-start;
San3yuan2534d422025-04-08 21:43:18 +080046 margin-bottom: 10px;
47}
48
49.userName {
50 font-size: 18px;
San3yuan03ab0642025-04-29 18:00:25 +080051 color:var(--text-color);
San3yuan2534d422025-04-08 21:43:18 +080052 font-weight: bold;
53 margin-bottom: 5px;
54}
55.role,
56.uploadTraffic,
57.downloadTraffic,
San3yuan6f2ed692025-04-16 20:24:49 +080058.downloadPoints,
San3yuan2534d422025-04-08 21:43:18 +080059.shareRatio {
San3yuan03ab0642025-04-29 18:00:25 +080060 color:var(--text-color);
61 margin-top:5px;
San3yuan2534d422025-04-08 21:43:18 +080062 font-size: 14px;
63 margin-bottom: 5px;
64}
65
66.signInButton {
67 align-self: flex-end;
68 padding: 10px 20px;
69 font-size: 14px;
70 background-color: #4CAF50;
71 color: white;
72 border: none;
73 border-radius: 5px;
74 cursor: pointer;
75}
76
77.signInButton:hover {
78 background-color: #45a049;
79}