✨ feat: add series functionality (#406)
Co-authored-by: welpo <welpo@users.noreply.github.com>
This commit is contained in:
@@ -265,3 +265,24 @@ details summary {
|
||||
[data-force-text-direction="rtl"] * {
|
||||
direction: inherit;
|
||||
}
|
||||
|
||||
.title-with-jump {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.title-with-jump h1 {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.jump-link {
|
||||
flex-shrink: 0;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
@media (max-width: 500px) {
|
||||
.title-with-jump {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
@@ -1,24 +1,28 @@
|
||||
.bloglist-container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
grid-template-columns: 1fr 8fr;
|
||||
}
|
||||
|
||||
.bloglist-row {
|
||||
.bloglist-meta {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
background-color: var(--navbar-color);
|
||||
padding-block: 2.5rem;
|
||||
|
||||
.bloglist-meta {
|
||||
ul {
|
||||
margin-inline-end: 0.7rem;
|
||||
padding: 0;
|
||||
width: 13.5rem;
|
||||
color: var(--meta-color);
|
||||
font-weight: 300;
|
||||
font-size: 0.9rem;
|
||||
|
||||
li {
|
||||
list-style-type: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
li.date {
|
||||
width: 13.5rem;
|
||||
}
|
||||
|
||||
li.draft-label {
|
||||
@@ -26,23 +30,17 @@
|
||||
line-height: 1.2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bloglist-tags {
|
||||
margin-top: 0.1rem;
|
||||
.bloglist-content {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
background-color: var(--navbar-color);
|
||||
padding: 2.5rem 0;
|
||||
|
||||
.tag {
|
||||
display: inline-block;
|
||||
margin-inline-end: 0.7rem;
|
||||
font-weight: 400;
|
||||
font-size: 0.75rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
|
||||
.bloglist-content {
|
||||
div {
|
||||
flex: 1;
|
||||
|
||||
|
||||
.bloglist-title {
|
||||
margin: 0;
|
||||
font-weight: bold;
|
||||
@@ -58,6 +56,18 @@
|
||||
}
|
||||
}
|
||||
|
||||
.bloglist-tags {
|
||||
margin-top: 0.1rem;
|
||||
|
||||
.tag {
|
||||
display: inline-block;
|
||||
margin-inline-end: 0.7rem;
|
||||
font-weight: 400;
|
||||
font-size: 0.75rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
|
||||
.description p {
|
||||
margin: 0.5rem 0 1rem;
|
||||
color: var(--text-color);
|
||||
@@ -86,12 +96,15 @@
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1100px) {
|
||||
.bloglist-row {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding-block: 2rem;
|
||||
.bloglist-container {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.bloglist-meta {
|
||||
.bloglist-meta {
|
||||
padding-block: 2rem;
|
||||
border-bottom: 0;
|
||||
|
||||
ul {
|
||||
margin-block-end: 0;
|
||||
width: 100%;
|
||||
|
||||
@@ -100,8 +113,15 @@
|
||||
margin-inline-end: 0.3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bloglist-content {
|
||||
.bloglist-content {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 0;
|
||||
padding-bottom: 2rem;
|
||||
|
||||
div {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user