fix styling
This commit is contained in:
@ -195,7 +195,7 @@ nav {
|
|||||||
/* width: min-content; */
|
/* width: min-content; */
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
aside>a:hover {
|
||||||
transform: none;
|
transform: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -242,6 +242,13 @@ footer {
|
|||||||
width: 230px;
|
width: 230px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-buttons {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/* body > footer {
|
/* body > footer {
|
||||||
margin-top: 4rem;
|
margin-top: 4rem;
|
||||||
padding: 2rem 1rem 1.5rem 1rem;
|
padding: 2rem 1rem 1.5rem 1rem;
|
||||||
|
@ -4,6 +4,8 @@ layout: layout/base.njk
|
|||||||
eleventyImport.collections: ["blog"]
|
eleventyImport.collections: ["blog"]
|
||||||
---
|
---
|
||||||
|
|
||||||
{% for post in collections.blog %}
|
<div class="pages-article">
|
||||||
|
{% for post in collections.blog reversed %}
|
||||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/blog/{{ post.data.page.fileSlug }})
|
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/blog/{{ post.data.page.fileSlug }})
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
</div>
|
@ -4,6 +4,8 @@ layout: layout/base.njk
|
|||||||
eleventyImport.collections: ["games"]
|
eleventyImport.collections: ["games"]
|
||||||
---
|
---
|
||||||
|
|
||||||
{% for post in collections.game %}
|
<div class="pages-article">
|
||||||
|
{% for post in collections.game reversed %}
|
||||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/game/{{ post.data.page.fileSlug }})
|
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/game/{{ post.data.page.fileSlug }})
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
</div>
|
@ -4,6 +4,8 @@ layout: layout/base.njk
|
|||||||
eleventyImport.collections: ["list"]
|
eleventyImport.collections: ["list"]
|
||||||
---
|
---
|
||||||
|
|
||||||
{% for post in collections.list %}
|
<div class="pages-article">
|
||||||
|
{% for post in collections.list reversed %}
|
||||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/list/{{ post.data.page.fileSlug }})
|
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/list/{{ post.data.page.fileSlug }})
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
</div>
|
@ -4,6 +4,8 @@ layout: layout/base.njk
|
|||||||
eleventyImport.collections: ["music"]
|
eleventyImport.collections: ["music"]
|
||||||
---
|
---
|
||||||
|
|
||||||
{% for post in collections.music %}
|
<div class="pages-article">
|
||||||
|
{% for post in collections.music reversed %}
|
||||||
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/music/{{ post.data.page.fileSlug }})
|
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/music/{{ post.data.page.fileSlug }})
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
<div>
|
Reference in New Issue
Block a user