stacker.news/components/item.module.css

48 lines
611 B
CSS
Raw Normal View History

2021-04-14 00:57:32 +00:00
.upvote {
fill: grey;
2021-04-14 23:56:29 +00:00
min-width: fit-content;
2021-04-14 00:57:32 +00:00
}
.upvote:hover {
fill: darkgray;
cursor: pointer;
}
.title {
font-weight: 500;
2021-04-14 23:56:29 +00:00
white-space: normal;
margin-right: .5rem;
2021-04-14 00:57:32 +00:00
}
.link {
font-size: 80%;
2021-04-14 23:56:29 +00:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2021-04-14 00:57:32 +00:00
}
.other {
font-size: 70%;
color: grey;
2021-04-14 23:56:29 +00:00
}
.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;
2021-04-14 00:57:32 +00:00
}