mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
54 lines
612 B
CSS
54 lines
612 B
CSS
.container {
|
|
display: flex;
|
|
flex-flow: column;
|
|
margin: 5px;
|
|
}
|
|
|
|
.container > hr {
|
|
width: 100%;
|
|
}
|
|
|
|
.title {
|
|
color: #99f;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.name {
|
|
color: #99f;
|
|
font-size: 20px;
|
|
margin: 20px 0px;
|
|
}
|
|
|
|
.category {
|
|
word-break: break-all;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.id {
|
|
font-size: 16px;
|
|
margin: 0px 3px;
|
|
color: #999;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.button {
|
|
border: 2px solid #99f;
|
|
border-radius: 3px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #333;
|
|
}
|
|
|
|
.votedtext {
|
|
color: #cf9;
|
|
}
|
|
.voted {
|
|
border: 2px solid #cf9;
|
|
}
|