Skip to content
Snippets Groups Projects
Commit c1a0638c authored by Simon Malesys's avatar Simon Malesys
Browse files

Enhance printing style for the antibody page

parent 9970d8a1
No related branches found
No related tags found
No related merge requests found
Pipeline #155027 passed
......@@ -65,12 +65,6 @@ footer::before {
content: url("/institut-pasteur-location.png");
}
@media screen and (width < 550px) {
footer::before {
display: none;
}
}
address {
display: flex;
flex-flow: column nowrap;
......@@ -92,4 +86,16 @@ nav ul {
gap: 10px;
list-style: none;
}
@media screen and (width < 550px) {
footer::before {
display: none;
}
}
@media print {
footer {
display: none;
}
}
</style>
......@@ -145,4 +145,10 @@ function showDownloads(): void {
display: flex;
gap: var(--half-spacing);
}
@media print{
nav {
display: none;
}
}
</style>
......@@ -198,11 +198,6 @@ th.descending::after {
content: '🠧';
}
td.id-cell,
td.header-cell {
word-break: break-all;
}
td.header-cell {
padding-left: 15%;
text-align: start;
......@@ -239,4 +234,11 @@ td.header-cell {
text-align: right;
}
}
@media print {
th,
td {
padding: var(--half-spacing);
}
}
</style>
......@@ -166,4 +166,17 @@ nav {
gap: var(--spacing);
padding: var(--spacing);
}
@media print {
*:not(a) {
color: var(--black);
padding: 0;
margin: 0;
}
nav,
button {
display: none;
}
}
</style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment