qmining-page/src/components/todoStuff/todoRow.module.css

49 lines
600 B
CSS

.row {
border-radius: 5px;
padding: 7px;
margin: 8px 4px;
cursor: pointer;
background-color: #171616;
}
.row:hover {
background-color: #333;
border: 2px solid #f99;
}
.row > div {
margin: 6px 4px;
}
.id {
flex: 0 20px;
margin: 1px 6px 1px 1px;
color: #999;
}
.description {
flex: 1;
word-break: normal;
font-size: 14px;
color: white;
}
.votes {
display: flex;
justify-content: space-between;
font-size: 12px;
}
.voted {
color: var(--text-color);
font-weight: 600;
}
.catName {
display: flex;
}
.category {
font-size: 10px;
white-space: nowrap;
}