diff options
author | RochDLY <roch.delannay@gmail.com> | 2024-06-28 14:25:58 +0200 |
---|---|---|
committer | RochDLY <roch.delannay@gmail.com> | 2024-06-28 14:25:58 +0200 |
commit | 238e91661b23ad48c40581c9f106ed7fe7962ca1 (patch) | |
tree | f53c4679f30e7908c9a741fc89aac0c6f8ad2e31 /static | |
parent | 131e6bbe3a66d5a0f78afdc6bacf1d8798243274 (diff) | |
download | pandoc-site-238e91661b23ad48c40581c9f106ed7fe7962ca1.tar.gz pandoc-site-238e91661b23ad48c40581c9f106ed7fe7962ca1.tar.bz2 pandoc-site-238e91661b23ad48c40581c9f106ed7fe7962ca1.zip |
correction de l'appel de la font TeX Gire Heros dans le css
Diffstat (limited to 'static')
-rw-r--r-- | static/css/styles.css | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/static/css/styles.css b/static/css/styles.css index cb496e8..d463ad5 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -5,25 +5,25 @@ } @font-face { - font-family: 'texgyreheroscn'; + font-family: 'TeX Gyre Heros'; font-weight: 400; src: url('/fonts/texgyreheroscn-regular.otf') format('otf'); } @font-face { - font-family: 'texgyreheroscn'; + font-family: 'TeX Gyre Heros'; font-weight: 700; src: url('/fonts/texgyreheroscn-bold.otf') format('otf'); } @font-face { - font-family: 'texgyreheroscn'; + font-family: 'TeX Gyre Heros'; font-style: italic; src: url('/fonts/texgyreheroscn-italic.otf') format('otf'); } @font-face { - font-family: 'texgyreheroscn'; + font-family: 'TeX Gyre Heros'; font-weight: 700; src: url('/fonts/texgyreheroscn-bolditalic') format('otf'); } @@ -43,8 +43,9 @@ body { display: grid; gap: 20px; grid-template-columns: 1fr 2fr; - font-family: 'texgyreheroscn'; + font-family: 'TeX Gyre Heros'; font-size: 1em; + margin-top: 0; } footer { @@ -57,6 +58,7 @@ footer { h1, h2, h3, h4, h5, h6 { font-family: 'Bagnard'; + margin-top: 0; } img { @@ -73,15 +75,22 @@ img { } .content { - padding: 4em; + padding: 1em 4em; font-size: 1.3em; +} +.content h2, h3, h4, h5, h6 { + margin: 0; } .content h2 { font-size: 2.5em; } +.content p { + margin-top: 0; +} + .description-site { grid-column: 2; grid-row: 2; |