summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2021-07-05 14:42:17 +0200
committerAhmed Abdelhalim <[email protected]>2021-07-05 14:42:17 +0200
commitc1ab82ff558bb662d53cb80800d9d523a7984cdf (patch)
tree460cdac79b7ec1bf300f04591d7daa80a90e9c67
parent13f6a6fac32aad4bf6d3e2a18fb1615d6c41dab5 (diff)
Show disclaimer only on chrome browsers
-rw-r--r--app/print.styl20
1 files changed, 11 insertions, 9 deletions
diff --git a/app/print.styl b/app/print.styl
index 389c493..c9dfb34 100644
--- a/app/print.styl
+++ b/app/print.styl
@@ -19,14 +19,16 @@ body {
@require "stylesheets/print/projects.styl"
@require "stylesheets/print/education.styl"
-footer {
- display: block
- position: fixed
- bottom: 0;
- font-size: 5pt
-}
+@supports (-webkit-appearance:none) and (column-fill:auto) and (not (-ms-accelerator:true)) and (not (overflow:-webkit-marquee)) and (not (-moz-appearance:none)) {
+ footer {
+ display: block
+ position: fixed
+ bottom: 0;
+ font-size: 5pt
+ }
-footer:after {
- color: #F7F7F7
- content: "Disclaimer: generated from https://a14m.me"
+ footer:after {
+ color: #F7F7F7
+ content: "Disclaimer: generated from https://a14m.me"
+ }
}