blob: bcf883c82eb736498de063aee30cd93eb644f7ea [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;
9 background-color: #f9f9f9;
10 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;
51 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 {
59 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}