Contribute page imporvements, sidebar for cards

This commit is contained in:
mrfry 2020-11-30 14:03:13 +01:00
parent db5aad0f8c
commit 1a02ae2e98
13 changed files with 274 additions and 79 deletions

View file

@ -0,0 +1,54 @@
.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;
}