Skip to content

Commit 5c1ba77

Browse files
committed
init
0 parents  commit 5c1ba77

File tree

8 files changed

+4785
-0
lines changed

8 files changed

+4785
-0
lines changed

README.md

Whitespace-only changes.

css/style.css

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
#members-panel {
2+
height: 100%;
3+
overflow-y: auto;
4+
background: #f5f6fa;
5+
padding: 20px;
6+
}
7+
8+
#members-panel h2 {
9+
margin: 0 0 20px 0;
10+
color: #2c3e50;
11+
font-size: 24px;
12+
}
13+
14+
.region-card {
15+
background: white;
16+
border-radius: 8px;
17+
padding: 15px;
18+
margin-bottom: 15px;
19+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
20+
cursor: pointer;
21+
transition: all 0.3s ease;
22+
}
23+
24+
.region-card:hover {
25+
transform: translateY(-2px);
26+
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
27+
}
28+
29+
.region-card.active {
30+
border: 2px solid #2196f3;
31+
background: #e3f2fd;
32+
}
33+
34+
.region-card h3 {
35+
margin: 0;
36+
color: #2c3e50;
37+
font-size: 18px;
38+
}
39+
40+
.member-count {
41+
color: #7f8c8d;
42+
font-size: 14px;
43+
margin: 5px 0;
44+
}
45+
46+
.member-list {
47+
margin-top: 10px;
48+
}
49+
50+
.member-item {
51+
padding: 8px;
52+
border-radius: 4px;
53+
margin: 5px 0;
54+
background: rgba(255, 255, 255, 0.5);
55+
}
56+
57+
.member-name {
58+
color: #2c3e50;
59+
font-weight: 500;
60+
}
61+
62+
.member-role {
63+
color: #2196f3;
64+
font-size: 14px;
65+
margin-top: 2px;
66+
}
67+
68+
@keyframes pulse {
69+
0% {
70+
transform: scale(1);
71+
}
72+
50% {
73+
transform: scale(1.02);
74+
}
75+
100% {
76+
transform: scale(1);
77+
}
78+
}

0 commit comments

Comments
 (0)