92 lines
No EOL
2 KiB
CSS
92 lines
No EOL
2 KiB
CSS
.mitgliederContainer {
|
|
margin: 51px 49px 0 36px;
|
|
display: flex;
|
|
padding: 0px 30px 30px 30px;
|
|
flex-direction: column;
|
|
align-self: stretch;
|
|
border-radius: 30px;
|
|
border: 1px solid var(--color-gray-disabled);
|
|
background: var(--color-bg);
|
|
position: relative;
|
|
box-shadow: 0px 2px 6px 0px rgba(194, 194, 194, 0.10);
|
|
max-height: calc(100vh - 100px);
|
|
overflow: hidden;
|
|
font-family: var(--font-family);
|
|
}
|
|
|
|
.horizontalLineLight {
|
|
width: 100%;
|
|
background-color: var(--color-gray-disabled);
|
|
height: 1px;
|
|
margin-top: 90px;
|
|
margin-left: -30px;
|
|
position: absolute;
|
|
}
|
|
|
|
.header{
|
|
display: flex;
|
|
gap: 30px;
|
|
align-items: flex-start;
|
|
height: 62px;
|
|
color: var(--color-text);
|
|
padding-top: 30px;
|
|
padding-bottom: 30px;
|
|
font-family: var(--font-family);
|
|
}
|
|
|
|
.mitglieder_hinzufügen_button {
|
|
|
|
border-radius: 30px;
|
|
background: var(--color-gray-disabled);
|
|
color: var(--color-text);
|
|
border: none;
|
|
outline: none;
|
|
text-align: left;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
font-family: var(--font-family);
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.mitglieder_hinzufügen_button:hover {
|
|
cursor: pointer;
|
|
background-color: var(--color-gray);
|
|
}
|
|
|
|
.add_icon {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.membersList {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
overflow-y: auto; /* Enable vertical scrolling */
|
|
/* Space for the header line */
|
|
}
|
|
|
|
.membersList li {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 60px; /* Specific height for each item */
|
|
padding: 0 16px;
|
|
border-bottom: 1px solid var(--color-gray-disabled);
|
|
font-size: 16px;
|
|
transition: background-color 0.2s ease;
|
|
color: var(--color-text);
|
|
font-family: var(--font-family);
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
} |