]> git.p6c8.net - pcdenotes.git/commitdiff
Moved more styles to CSS file
authorPatrick Canterino <patrick@patrick-canterino.de>
Sat, 5 Feb 2022 12:20:59 +0000 (13:20 +0100)
committerPatrick Canterino <patrick@patrick-canterino.de>
Sat, 5 Feb 2022 12:20:59 +0000 (13:20 +0100)
notes/static/notes/style.css
notes/templates/archive_main.html
notes/templates/archive_month.html
notes/templates/archive_year.html
notes/templates/note.html

index 8336f03291616409428b6e1d898146b91c9555cc..c87f0185d6b4a659d7744b4d4a6f9635bfa91adf 100644 (file)
@@ -13,6 +13,9 @@ h2 a:link, h2 a:visited, h2 a:active, h2 a:hover {
     color: #212529;
 }
 
+h2 {
+    padding-top: 1em;
+}
 
 article .publication-date {
     font-style: italic;
index 640d9f200a5851565186e652e5fc1a3970bec05e..268e950d42fa3b1f9710590459e637b9ec6f7035 100644 (file)
@@ -3,7 +3,7 @@
 {% block title %}Archive – Notes{% endblock %}
 
 {% block content %}
-<h2 class="container mt-5">Archive</h2>
+<h2>Archive</h2>
 
 {% if years %}
 <ul>
index a73f3e578133a3cfe9ede508e4fef00ac188e4f4..594eb35b211f35097038503ec56e9e2ad8e2e0a6 100644 (file)
@@ -3,7 +3,7 @@
 {% block title %}Archive {{ month }} / {{ year }} – Notes{% endblock %}
 
 {% block content %}
-<h2 class="container mt-5">Archive {{ month }} / {{ year }}</h2>
+<h2>Archive {{ month }} / {{ year }}</h2>
 
 {% if notes %}
 <ul>
index 430a1f035546e84e92af8d3db2503fe2d04fcb41..826086acd3891125a2ce91f7e33c6b5a0dbf2212 100644 (file)
@@ -3,7 +3,7 @@
 {% block title %}Archive {{ year }} – Notes{% endblock %}
 
 {% block content %}
-<h2 class="container mt-5">Archive {{ year }}</h2>
+<h2>Archive {{ year }}</h2>
 
 {% if months %}
 <ul>
index 7f384f9f597cd025e9bfba2ebc2f9280d37c344e..0cc6e3d679cb48520b7530a32922a912171ef00b 100644 (file)
@@ -1,5 +1,5 @@
 {% load markdownify %}
-<article class="container mt-5{% if note.is_draft %} text-muted{% endif %}">
+<article{% if note.is_draft %} class="text-muted"{% endif %}>
     <h2><a href="{{ note.get_absolute_url }}"{% if note.is_draft %} class="text-muted"{% endif %}>{{ note.title }}</a></h2>
     {% if note.is_draft %}<p class="fw-bold">Status: Draft</p>{% endif %}
     <div class="mt-3">{{ note.content|linebreaksbr|markdownify }}</div>

patrick-canterino.de