Remove link on title and correct readmore color

This commit is contained in:
kitoy 2025-12-22 15:08:47 +01:00
parent 6984d7b04f
commit 7bd8614359
7 changed files with 11 additions and 27 deletions

View File

@ -20,6 +20,7 @@
color: var(--color-text); color: var(--color-text);
background-color: var(--color-background); background-color: var(--color-background);
font-family: var(--font-basic); font-family: var(--font-basic);
font-weight: 400;
} }
@ -66,11 +67,6 @@ a {
text-align: right; text-align: right;
} }
.readmore a {
color: var(--color-text);
text-decoration: underline;
}
.copyleft { .copyleft {
display:inline-block; display:inline-block;
@ -118,6 +114,7 @@ a {
} }
.titre { .titre {
text-align: center; text-align: center;
} }

View File

@ -20,6 +20,7 @@
color: var(--color-text); color: var(--color-text);
background-color: var(--color-background); background-color: var(--color-background);
font-family: var(--font-basic); font-family: var(--font-basic);
font-weight: 400;
} }
@ -65,10 +66,6 @@ a {
text-align: right; text-align: right;
} }
.readmore a {
color: var(--color-text);
text-decoration: underline;
}
.copyleft { .copyleft {

View File

@ -29,7 +29,7 @@
* {-moz-box-sizing: border-box; box-sizing: border-box;} * {-moz-box-sizing: border-box; box-sizing: border-box;}
a { .articles a {
box-shadow: inset 0 0 0 0 var(--color-text); box-shadow: inset 0 0 0 0 var(--color-text);
color: --color-text; color: --color-text;
padding: 0 .25rem; padding: 0 .25rem;
@ -38,13 +38,13 @@
} }
a:hover { .articles a:hover {
color: var(--color-background); color: var(--color-background);
box-shadow: inset 300px 0 0 0 var(--color-text); box-shadow: inset 300px 0 0 0 var(--color-text);
text-decoration: none; text-decoration: none;
} }
a { .articles a {
color: var(--color-text); color: var(--color-text);
text-decoration: underline 2px; text-decoration: underline 2px;
font-weight: 700; font-weight: 700;
@ -65,10 +65,6 @@ a {
text-align: right; text-align: right;
} }
.readmore a {
color: var(--color-text);
text-decoration: underline;
}
.copyleft { .copyleft {

View File

@ -20,6 +20,7 @@
color: var(--color-text); color: var(--color-text);
background-color: var(--color-background); background-color: var(--color-background);
font-family: var(--font-basic); font-family: var(--font-basic);
font-weight: 400;
} }
@ -66,10 +67,6 @@ a:hover {
text-align: right; text-align: right;
} }
.readmore a {
color: var(--color-text);
text-decoration: underline;
}
.copyleft { .copyleft {

View File

@ -21,6 +21,7 @@
color: var(--color-text); color: var(--color-text);
background-color: var(--color-background); background-color: var(--color-background);
font-family: var(--font-basic); font-family: var(--font-basic);
font-weight: 400;
} }
@ -68,10 +69,6 @@ a:hover {
text-align: right; text-align: right;
} }
.readmore a {
color: var(--color-text);
text-decoration: underline;
}
.copyleft { .copyleft {

View File

@ -17,7 +17,7 @@
<div class="articles"> <div class="articles">
{% for post in posts %} {% for post in posts %}
<h2 class="index"><a href="/blog/{{ post.status }}/{{author}}/{{post.title}}"> {{ post.title }}</a></h2> <h2 class="index"> {{ post.title }} </h2>
<small> <small>
<time datetime="{{ post.time }}"> <time datetime="{{ post.time }}">
Publié le {{ post.creation_date }} Publié le {{ post.creation_date }}

View File

@ -23,7 +23,7 @@
<a href="/blog/rss.xml"> S'abonner au flux RSS </a> <a href="/blog/rss.xml"> S'abonner au flux RSS </a>
{% for post in posts %} {% for post in posts %}
<h2 class="index"><a href="/blog/{{ post.status }}/{{post.author}}/{{post.title}}"> {{ post.title }}</a></h2> <h2 class="index"> {{ post.title }}</h2>
<small> <small>
<time datetime="{{ post.time }}"> <time datetime="{{ post.time }}">
Publié le {{ post.creation_date }} par <a href="{{ url_for('blog.view') }}/{{ post.author }}"> {{ post.author }}</a> Publié le {{ post.creation_date }} par <a href="{{ url_for('blog.view') }}/{{ post.author }}"> {{ post.author }}</a>