blob: 858e88a4335dacc56385a89a396f6ca770c20cbe [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;
San3yuan2534d422025-04-08 21:43:18 +08007 border-radius: 10px;
San3yuan03ab0642025-04-29 18:00:25 +08008 background-color: var(--card-bg);
San3yuan2534d422025-04-08 21:43:18 +08009 width: 100%;
San3yuan6f2ed692025-04-16 20:24:49 +080010 height: 100%; /* Adjust height as needed */
San3yuan2534d422025-04-08 21:43:18 +080011 box-sizing: border-box;
San3yuan6f2ed692025-04-16 20:24:49 +080012 overflow:hidden;
San3yuan2534d422025-04-08 21:43:18 +080013}
14
15.left {
San3yuan6f2ed692025-04-16 20:24:49 +080016 border:1px solid #ccc;
San3yuan2534d422025-04-08 21:43:18 +080017 display: flex;
18 flex-direction: column;
19 align-items: center;
20 justify-content: flex-start;
San3yuan6f2ed692025-04-16 20:24:49 +080021 width: 35%; /* Adjust width for avatar section */
San3yuan2534d422025-04-08 21:43:18 +080022}
23
24.avatar {
San3yuan6f2ed692025-04-16 20:24:49 +080025 width: 100%;
26 height: 100%;
San3yuan2534d422025-04-08 21:43:18 +080027 border-radius: 50%;
28 object-fit: cover;
29 margin-bottom: 10px;
30}
31.right {
San3yuan6f2ed692025-04-16 20:24:49 +080032 border:1px solid #aaa;
San3yuan2534d422025-04-08 21:43:18 +080033 display: flex;
34 flex-direction: column;
San3yuan6f2ed692025-04-16 20:24:49 +080035 justify-content: flex-start;
San3yuan2534d422025-04-08 21:43:18 +080036 align-items: flex-start;
San3yuan6f2ed692025-04-16 20:24:49 +080037 width: 55%; /* Adjust width for info and button section */
San3yuan2534d422025-04-08 21:43:18 +080038}
39
40.info {
41 display: flex;
42 flex-direction: column;
43 align-items: flex-start;
San3yuan6f2ed692025-04-16 20:24:49 +080044 justify-content: flex-start;
San3yuan2534d422025-04-08 21:43:18 +080045 margin-bottom: 10px;
46}
47
48.userName {
49 font-size: 18px;
San3yuan03ab0642025-04-29 18:00:25 +080050 color:var(--text-color);
San3yuan2534d422025-04-08 21:43:18 +080051 font-weight: bold;
52 margin-bottom: 5px;
53}
54.role,
55.uploadTraffic,
56.downloadTraffic,
San3yuan6f2ed692025-04-16 20:24:49 +080057.downloadPoints,
San3yuan2534d422025-04-08 21:43:18 +080058.shareRatio {
San3yuan03ab0642025-04-29 18:00:25 +080059 color:var(--text-color);
60 margin-top:5px;
San3yuan2534d422025-04-08 21:43:18 +080061 font-size: 14px;
62 margin-bottom: 5px;
63}
64
65.signInButton {
66 align-self: flex-end;
67 padding: 10px 20px;
68 font-size: 14px;
69 background-color: #4CAF50;
70 color: white;
71 border: none;
72 border-radius: 5px;
73 cursor: pointer;
74}
75
76.signInButton:hover {
77 background-color: #45a049;
78}