Change style

This commit is contained in:
Digital Studium 2023-07-28 21:05:28 +03:00
parent ddf9a68ffc
commit abda4aca65
2 changed files with 8 additions and 4 deletions

View File

@ -7,6 +7,10 @@ html {
background-color: #f2f2f2 background-color: #f2f2f2
} }
main, .sidebar, .lang {
padding-top: 2rem;
}
article, article,
section { section {
font-size: 1.3rem !important; font-size: 1.3rem !important;

View File

@ -13,6 +13,10 @@
<body> <body>
{% include "components/header.j2" %} {% include "components/header.j2" %}
{% include "components/social.j2" %}
{% if config.pagefind %}
{% include "components/search.j2" %}
{% endif %}
<main> <main>
{% if home %} {% if home %}
{% include "components/index.j2" %} {% include "components/index.j2" %}
@ -22,10 +26,6 @@
{% include "components/single.j2" %} {% include "components/single.j2" %}
{% endif %} {% endif %}
</main> </main>
{% include "components/social.j2" %}
{% if config.pagefind %}
{% include "components/search.j2" %}
{% endif %}
{% include "components/sidebar.j2" %} {% include "components/sidebar.j2" %}
{% include "components/footer.j2" %} {% include "components/footer.j2" %}
{% include "components/script.j2" %} {% include "components/script.j2" %}