-
Notifications
You must be signed in to change notification settings - Fork 0
/
memberTable.css
48 lines (42 loc) · 1.07 KB
/
memberTable.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* CSS styles */
.list-member {
font-size: 20px; /* Adjust the font size as needed */
padding: 5px 10px;
}
.members-container {
display: flex;
justify-content: center;
margin-bottom: 20px; /* Optional: Add margin as needed */
height: 30%;
}
/* Style for the members table */
.members-table {
margin-top: 20px;
margin-left: 50px;
padding: 10px;
background-color: #f4f4f4;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
height: 50%;
width: 40%;
}
/* Style for individual member items */
.members-list {
display: grid;
grid-template-columns: repeat(5, auto); /* Adjust column count as needed */
gap: 10px;
list-style: none;
padding: 10px; /* Adjust padding */
font-size: 15px; /* Reduce font size for individual names */
}
.members-list li {
padding: 5px;
border-radius: 5px;
text-align: center;
color: #fff;
width: auto;
}
/* Colors based on participation counts */
.blue { background-color: #3498db; }
.yellow { background-color: #f39c12; }
.red { background-color: #e74c3c; }