Very basic printing css

This commit is contained in:
Claude Brisson
2024-01-20 12:16:09 +01:00
parent 04f9c27cbe
commit 48fc66ab52

View File

@@ -371,4 +371,35 @@
a.disabled { a.disabled {
color: darkgray; color: darkgray;
} }
@media print {
body {
width: unset;
height: unset;
font-size: 0.65em;
}
.roundbox {
border: none;
}
#title {
font-size: 1rem;
margin-top: 0;
}
#logo, #lang, .steps, #filter-box, #footer, #pairing-left, #pairing-buttons, button, #standings-params {
display: none !important;
}
.circular.label {
transform: scale(0.7);
}
#paired {
max-height: unset;
}
}
} }