1
0
Fork 0
mirror of https://gitlab.com/MrFry/qmining-page synced 2025-04-01 20:23:44 +02:00
qmining-page/src/components/todoStuff/todoCard.module.css
2020-12-21 10:59:16 +01:00

44 lines
497 B
CSS

.card {
border-radius: 2px;
padding: 5px;
margin: 6px 3px;
cursor: pointer;
}
.voted {
color: #cf9;
}
.card:hover {
background-color: #333;
border: 2px solid #f99;
}
.card > div {
margin: 5px 0px;
}
.description {
word-break: normal;
font-size: 14px;
color: white;
}
.category {
font-size: 10px;
white-space: nowrap;
}
.numbers {
display: flex;
justify-content: space-between;
}
.numbers > div {
font-size: 12px;
}
.id {
margin: 0px 3px;
color: #999;
}