blob: da68ee359ca1a243f4f9a593522de1b11bd971ab [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 {
16 display: flex;
17 flex-direction: column;
18 align-items: center;
19 justify-content: flex-start;
San3yuan6f2ed692025-04-16 20:24:49 +080020 width: 35%; /* Adjust width for avatar section */
San3yuan2534d422025-04-08 21:43:18 +080021}
22
23.avatar {
San3yuan6f2ed692025-04-16 20:24:49 +080024 width: 100%;
25 height: 100%;
San3yuan2534d422025-04-08 21:43:18 +080026 border-radius: 50%;
27 object-fit: cover;
28 margin-bottom: 10px;
29}
30.right {
31 display: flex;
32 flex-direction: column;
San3yuan6f2ed692025-04-16 20:24:49 +080033 justify-content: flex-start;
San3yuan2534d422025-04-08 21:43:18 +080034 align-items: flex-start;
San3yuan6f2ed692025-04-16 20:24:49 +080035 width: 55%; /* Adjust width for info and button section */
San3yuan2534d422025-04-08 21:43:18 +080036}
37
38.info {
39 display: flex;
40 flex-direction: column;
41 align-items: flex-start;
San3yuan6f2ed692025-04-16 20:24:49 +080042 justify-content: flex-start;
San3yuan2534d422025-04-08 21:43:18 +080043 margin-bottom: 10px;
44}
45
46.userName {
47 font-size: 18px;
San3yuan03ab0642025-04-29 18:00:25 +080048 color:var(--text-color);
San3yuan2534d422025-04-08 21:43:18 +080049 font-weight: bold;
50 margin-bottom: 5px;
51}
52.role,
53.uploadTraffic,
54.downloadTraffic,
San3yuan6f2ed692025-04-16 20:24:49 +080055.downloadPoints,
San3yuan2534d422025-04-08 21:43:18 +080056.shareRatio {
San3yuan03ab0642025-04-29 18:00:25 +080057 color:var(--text-color);
58 margin-top:5px;
San3yuan2534d422025-04-08 21:43:18 +080059 font-size: 14px;
60 margin-bottom: 5px;
61}
62
63.signInButton {
64 align-self: flex-end;
65 padding: 10px 20px;
66 font-size: 14px;
67 background-color: #4CAF50;
68 color: white;
69 border: none;
70 border-radius: 5px;
71 cursor: pointer;
72}
73
74.signInButton:hover {
75 background-color: #45a049;
76}