La nouvelle page d’accueil de https://thx.zoethical.org/ a le mérite d’être à jour (merci @how) et d’être synthétique. Quant à sa mise-en-page, je propose un petit CSS fait à l’arrache pour l’améliorer et la charter. Je sais pas si les fontes sont déjà stockées sur le serveur pour pouvoir les mettre en @font-face.
D’abord, j’ajouterais le viewport dans le header HTML:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Puis côté CSS :
body
{
width: 80%;
min-width: 400px;
max-width: 600px;
margin: auto;
}
header
{
font-family: abel;
}
h1, h2, h3, h4, h5
{
font-family: abel;
text-align: center;
}
h1
{
font-size: xx-large;
}
section#disponible h3,h4,h5, section#a-paraitre h3,h4,h5
{
text-align: left;
}
p, dt, dd
{
font-family: "Cormorant Garamond";
font-size: large;
}
h3.to-forum
{
display: block;
background-color: green;
width: 70%;
max-width: 250px;
padding-block: 2%;
border-radius: 5px;
margin: auto;
padding: 10px;
}
h3.to-forum a
{
color: black;
}