diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2017-02-06 12:08:01 -0500 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2017-02-06 12:08:01 -0500 |
commit | a799aec726ee9aabcbb24d71919430a6053f010d (patch) | |
tree | 23f699a78a92c2bd8e26aa0ba8052edbccb5281a /source/css | |
parent | a7669cca8eb402aba18d64a77dc6847a368a21e1 (diff) | |
download | my_new_personal_website-a799aec726ee9aabcbb24d71919430a6053f010d.tar.xz my_new_personal_website-a799aec726ee9aabcbb24d71919430a6053f010d.zip |
theme.css: hide #archival-notice from print
Also move to display:none for hiding instead of an awkward visibility:hidden
with zero width and height.
Diffstat (limited to 'source/css')
-rw-r--r-- | source/css/theme.css | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source/css/theme.css b/source/css/theme.css index bdcc84fb..6735e8c0 100644 --- a/source/css/theme.css +++ b/source/css/theme.css @@ -385,9 +385,7 @@ noscript a { width: 90%; } - .nav, .rss-icon, .atom-icon, .cc-icon { - width: 0; - height: 0; - visibility: hidden; + .nav, .rss-icon, .atom-icon, .cc-icon, #archival-notice { + display: none; } } |