35 lines
513 B
CSS
35 lines
513 B
CSS
.choreList {
|
|
list-style-type: none;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
|
|
gap: 10px;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.chore {
|
|
padding: 5px 10px;
|
|
text-align: left;
|
|
border-top: 2px solid white;
|
|
border-left: 2px solid white;
|
|
border-bottom: 2px solid #828282;
|
|
border-right: 2px solid #828282;
|
|
}
|
|
|
|
.userName {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.irregular {
|
|
background-color: #aaaaaa;
|
|
}
|
|
|
|
.due {
|
|
background-color: #e4877e;
|
|
}
|
|
|
|
.notDue {
|
|
background-color: #ccffcc;
|
|
}
|