Files
qmining-page/src/components/todoStuff/todoCard.module.css
T

47 lines
567 B
CSS

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