ajout de la version imprimable + réorga css

This commit is contained in:
Antoine Ouvrard 2021-08-17 10:45:06 +02:00
parent 8319eee9c4
commit 56693116d1
3 changed files with 20 additions and 13 deletions

View File

@ -68,3 +68,4 @@ JV
cv2021@aouvrard.fr cv2021@aouvrard.fr
37700 Saint-Pierre des Corps 37700 Saint-Pierre des Corps
[Sources de ce site](https://git.emao.fr/antoine/cv-aou) sur mon git auto-hébergé [Sources de ce site](https://git.emao.fr/antoine/cv-aou) sur mon git auto-hébergé
[Version Imprimable](javascript:window.print())

View File

@ -84,6 +84,7 @@
<hr /> <hr />
<p>cv2021@aouvrard.fr<br /> <p>cv2021@aouvrard.fr<br />
37700 Saint-Pierre des Corps<br /> 37700 Saint-Pierre des Corps<br />
<a href="https://git.emao.fr/antoine/cv-aou">Sources de ce site</a> sur mon git auto-hébergé</p> <a href="https://git.emao.fr/antoine/cv-aou">Sources de ce site</a> sur mon git auto-hébergé<br />
<a href="javascript:window.print()">Version Imprimable</a></p>
</body> </body>
</html> </html>

View File

@ -19,14 +19,10 @@ h2 {
text-align: center; text-align: center;
} }
p {
text-align: center;
}
h3 { h3 {
/* This is called "sectioncolor" in the ConTeXt stylesheet. */
color: #00bf18; color: #00bf18;
} }
/* There is a bar just before each category */ /* There is a bar just before each category */
h3:before { h3:before {
content: ""; content: "";
@ -34,10 +30,15 @@ h3:before {
margin-right:1%; margin-right:1%;
width: 16%; width: 16%;
height: 10px; height: 10px;
/* This is called "rulecolor" in the ConTeXt stylesheet. */
background-color: #00bf18; background-color: #00bf18;
} }
p {
text-align: center;
margin-top:0;
margin-bottom:7px;
}
/* Definitions */ /* Definitions */
dt { dt {
float: left; float: left;
@ -49,10 +50,6 @@ dd {
margin-left: 17%; margin-left: 17%;
margin-bottom:7px; margin-bottom:7px;
} }
p {
margin-top:0;
margin-bottom:7px;
}
/* Blockquotes */ /* Blockquotes */
blockquote { blockquote {
@ -79,3 +76,11 @@ hr {
table { table {
width: 100%; width: 100%;
} }
/* Print settings */
@media print {
body * {
background: #c3c3c3;
color: #333;
}
}