logo

lanodan.eu

Unnamed repository; edit this file 'description' to name the repository.
commit: 05c0c0fc49c52f13c3209cc97e3cf47e3017c1aa
parent: e7a9ad3df2a433b3cd4bc73dbadb95bfb6d55998
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue, 17 Apr 2018 02:00:44 +0200

style.css: @media print: Do no display <nav>, markdown-style links

Diffstat:

Mstyle.css9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/style.css b/style.css @@ -9,3 +9,12 @@ code { font-family: monospace; } .p-nickname::before { content:"("; } .p-nickname { font-family: monospace; } .p-nickname::after { content:")"; } + +@media print { + nav { display: none; } + a::before { content: "[" attr(href) "]("; } + a::after { content: ")"; } + a::before, a::after { + font-family: monospace; + } +}