aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2024-05-01 13:21:16 +0100
committerLouis Pilfold <louis@lpil.uk>2024-05-01 13:21:16 +0100
commitb8011ddb3597351883236c74c0e1739b50a3e25e (patch)
tree6611ff7bec352bfbd86206757ecca2e0a3394c32
parentc5d603b5b155e9c1d81042af07f191ed06be6d9b (diff)
downloadtour-b8011ddb3597351883236c74c0e1739b50a3e25e.tar.gz
tour-b8011ddb3597351883236c74c0e1739b50a3e25e.zip
Hide button for print
-rw-r--r--static/css/pages/everything.css14
1 files changed, 9 insertions, 5 deletions
diff --git a/static/css/pages/everything.css b/static/css/pages/everything.css
index 1fc4424..1885078 100644
--- a/static/css/pages/everything.css
+++ b/static/css/pages/everything.css
@@ -255,7 +255,6 @@ h3 {
}
@container lessons-list (min-width: 900px) {
-
#everything-lessons .lesson,
#everything-lessons .chapter-title {
padding-right: var(--gap-quad);
@@ -289,13 +288,15 @@ h3 {
}
@keyframes highlight-block {
- 0% {}
+ 0% {
+ }
50% {
background: var(--color-accent-muted);
}
- 100% {}
+ 100% {
+ }
}
@keyframes reveal {
@@ -313,7 +314,6 @@ h3 {
}
@media print {
-
body#page-everything {
overflow: visible;
float: none;
@@ -347,4 +347,8 @@ h3 {
article.lesson:not(hr.chapter-separator + article.lesson) {
break-inside: avoid;
}
-} \ No newline at end of file
+
+ #everything-lessons .lesson-snippet-link {
+ display: none;
+ }
+}