48 lines
611 B
CSS
48 lines
611 B
CSS
.upvote {
|
|
fill: grey;
|
|
min-width: fit-content;
|
|
}
|
|
|
|
.upvote:hover {
|
|
fill: darkgray;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.title {
|
|
font-weight: 500;
|
|
white-space: normal;
|
|
margin-right: .5rem;
|
|
}
|
|
|
|
.link {
|
|
font-size: 80%;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.other {
|
|
font-size: 70%;
|
|
color: grey;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
min-width: 0;
|
|
}
|
|
|
|
.hunk {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.children {
|
|
margin-top: 1rem;
|
|
margin-left: 24px;
|
|
} |