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

65 lines
781 B
CSS

.container {
display: flex;
flex-flow: column;
margin: 5px;
}
.container > hr {
width: 100%;
}
.title {
color: var(--text-color);
font-size: 18px;
}
.title {
color: var(--text-color);
font-size: 20px;
margin: 5px 0px;
}
.name {
}
.category {
word-break: break-all;
font-size: 10px;
}
.id {
font-size: 20px;
margin: 0px 3px;
color: #999;
}
.description {
overflow-x: auto;
overflow-y: auto;
max-height: calc(38vh);
margin: 5px;
}
.row {
display: flex;
justify-content: space-between;
margin: 2px 10px;
}
.button {
border: 2px solid var(--text-color);
border-radius: 3px;
text-align: center;
cursor: pointer;
}
.button:hover {
background-color: #333;
}
.votedtext {
color: #cf9;
}
.voted {
border: 2px solid #cf9;
}