]> git.p6c8.net - pcdenotes.git/commitdiff
Moved more styles to CSS file
authorPatrick Canterino <patrick@patrick-canterino.de>
Mon, 31 Jan 2022 18:15:24 +0000 (19:15 +0100)
committerPatrick Canterino <patrick@patrick-canterino.de>
Mon, 31 Jan 2022 18:15:24 +0000 (19:15 +0100)
notes/static/style.css
notes/templates/note.html

index 57d9dfc9d7a77682836de54053a52dc26b149f04..ae3c9da22f6cc61da2bc0cdce841b97c50c2d0b4 100644 (file)
@@ -4,17 +4,18 @@ header {
     text-align: center;
 }
 
     text-align: center;
 }
 
-header a:link, header a:visited, header a:active, header a:hover {
+header a:link, header a:visited, header a:active, header a:hover,
+footer a:link, footer a:visited, footer a:active, footer a:hover {
     color: #ffffff;
 }
 
     color: #ffffff;
 }
 
-footer {
-    color: #ffffff;
-    background-color: #212529;
+h2 a:link, h2 a:visited, h2 a:active, h2 a:hover {
+    color: #212529;
 }
 
 }
 
-footer a:link, footer a:visited, footer a:active, footer a:hover {
+footer {
     color: #ffffff;
     color: #ffffff;
+    background-color: #212529;
 }
 
 footer ul {
 }
 
 footer ul {
index 9eebd5ccf8486b357ee728c6e8059c3946cfd79d..7f384f9f597cd025e9bfba2ebc2f9280d37c344e 100644 (file)
@@ -1,6 +1,6 @@
 {% load markdownify %}
 <article class="container mt-5{% if note.is_draft %} text-muted{% endif %}">
 {% load markdownify %}
 <article class="container mt-5{% if note.is_draft %} text-muted{% endif %}">
-    <h2><a href="{{ note.get_absolute_url }}" class="{% if note.is_draft %}text-muted{% else %}link-dark{% endif %}">{{ note.title }}</a></h2>
+    <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>
     <p class="publication-date">Published on {{ note.created_at|date:"Y-m-d, H:i" }}</p>
     {% if note.is_draft %}<p class="fw-bold">Status: Draft</p>{% endif %}
     <div class="mt-3">{{ note.content|linebreaksbr|markdownify }}</div>
     <p class="publication-date">Published on {{ note.created_at|date:"Y-m-d, H:i" }}</p>

patrick-canterino.de