Some print fixes
This commit is contained in:
parent
56a88d5a01
commit
582730edb6
|
@ -1,4 +1,4 @@
|
||||||
<details class="event-day">
|
<details open class="event-day">
|
||||||
<summary class="event-day-heading">
|
<summary class="event-day-heading">
|
||||||
{{ eventDay.heading }}
|
{{ eventDay.heading }}
|
||||||
</summary>
|
</summary>
|
||||||
|
|
|
@ -4,6 +4,12 @@
|
||||||
justify-self: start;
|
justify-self: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
.downloads {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
.downloads {
|
.downloads {
|
||||||
grid-column-start: 1;
|
grid-column-start: 1;
|
||||||
|
|
|
@ -27,6 +27,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
.event {
|
||||||
|
display: block !important;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.event-time {
|
.event-time {
|
||||||
grid-column-start: 1;
|
grid-column-start: 1;
|
||||||
grid-column-end: 3;
|
grid-column-end: 3;
|
||||||
|
|
|
@ -14,6 +14,12 @@
|
||||||
border-bottom-right-radius: 5px;
|
border-bottom-right-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
.navigation {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 1024px) {
|
@media screen and (min-width: 1024px) {
|
||||||
.navigation {
|
.navigation {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
12
styles.css
12
styles.css
|
@ -35,6 +35,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
.navigation {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.skip-to-content {
|
.skip-to-content {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -253,3 +259,9 @@
|
||||||
grid-row-end: 5;
|
grid-row-end: 5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
.footer {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue