blog/css/poststyle.css
simonpetit 512f32c294
All checks were successful
continuous-integration/drone/push Build is passing
adding a decent footer height to make reading more confortable when reaching the end
2025-11-05 14:35:19 +00:00

65 lines
770 B
CSS

body {
font-family: 'IBM Plex Mono', monospace;
}
.title {
margin-top: 5vh;
margin-bottom: 6vh;
text-align: center;
font-family: 'IBM Plex Mono', monospace;
}
.title a {
text-decoration: none;
color: black;
}
.title a:hover {
text-decoration: underline;
color: #AAA;
}
article {
width: 70vw;
margin-right: auto;
margin-left: auto;
}
article p {
text-align: justify;
}
article h1 {
}
pre {
background-color: lightgrey;
border-radius: 0.5em;
display: flex;
}
pre > code {
margin-left: 2em;
margin-top: 1em;
margin-bottom: 1em;
}
article > footer > div {
height: 25vh;
}
/*
footer {
width: 70vw;
margin-top: 6vh;
margin-right: auto;
margin-left: auto;
font-size: 1.3vh;
}
footer span a {
color: #FF8608;
}
*/