diff options
author | Holden Rohrer <hr@hrhr.dev> | 2021-02-21 03:32:28 -0500 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2021-02-21 03:32:28 -0500 |
commit | 0fe7c1f9cecadca1b70ec7aa810c2e2d0150d6b9 (patch) | |
tree | daed772555c79f743733b27807a7e2009773da4a /src/index.css | |
parent | 90fc60502dee139541bae3ea8262150057e163f3 (diff) |
hide footer on print to put everything in one page
Diffstat (limited to 'src/index.css')
-rw-r--r-- | src/index.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/index.css b/src/index.css index 8fc5b3b..c0b25bd 100644 --- a/src/index.css +++ b/src/index.css @@ -1,11 +1,9 @@ - body > div > * { width: 50%; display: inline-block; text-align: center; overflow: hidden; margin: 0; - line-height: initial; font-size: 225%; font-size: min(3.6vw,225%); position: relative; @@ -14,6 +12,7 @@ body > div > * { body > div > span > * { padding: 0px 10px; + line-height: 1.2em; } h1 { @@ -76,3 +75,9 @@ a, a:visited { a:hover { text-decoration: none; } + +@media print { + footer { + display: none; + } +} |