2021-10-12 17:02:26 +00:00
|
|
|
.summary {
|
2021-10-11 00:35:20 +00:00
|
|
|
display: grid;
|
|
|
|
|
|
|
|
grid-template-areas:
|
|
|
|
"title tags"
|
|
|
|
"date tags";
|
|
|
|
grid-template-columns: auto 1fr;
|
|
|
|
grid-template-rows: auto 1fr;
|
|
|
|
grid-column-gap: 8px;
|
|
|
|
grid-row-gap: 2px;
|
|
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2021-10-12 17:02:26 +00:00
|
|
|
.summary > .summary-title {
|
2021-10-11 00:35:20 +00:00
|
|
|
grid-area: title;
|
|
|
|
justify-self: start;
|
|
|
|
|
|
|
|
font-size: large;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2021-10-12 17:02:26 +00:00
|
|
|
.summary > .summary-date {
|
2021-10-11 00:35:20 +00:00
|
|
|
grid-area: date;
|
|
|
|
justify-self: start;
|
|
|
|
|
|
|
|
font-style: italic;
|
|
|
|
font-size: x-small;
|
|
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2021-10-12 17:02:26 +00:00
|
|
|
.summary > .summary-tags {
|
2021-10-11 00:35:20 +00:00
|
|
|
grid-area: tags;
|
|
|
|
justify-self: end;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 4px;
|
|
|
|
}
|
|
|
|
|
2021-10-12 17:02:26 +00:00
|
|
|
.info {
|
2021-10-11 00:35:20 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 4px;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
2021-10-12 17:02:26 +00:00
|
|
|
.info > .info-date {
|
2021-10-11 00:35:20 +00:00
|
|
|
display: inline !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
width: auto !important;
|
|
|
|
|
|
|
|
justify-self: start;
|
|
|
|
}
|
|
|
|
|
2021-10-12 17:02:26 +00:00
|
|
|
.info > .info-tags {
|
2021-10-11 00:35:20 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
display: inline !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
width: auto !important;
|
|
|
|
}
|