Result sheets printing

This commit is contained in:
Claude Brisson
2024-01-24 14:25:12 +01:00
parent d725587c88
commit 8fe420bf6a
5 changed files with 144 additions and 0 deletions

View File

@@ -431,4 +431,65 @@
}
}
.page {
width: 96vw;
height: 96vh;
page-break-after: always;
.page-item {
font-size: 1.4rem;
line-height: 1.5rem;
height: 24vh;
border-bottom: 1px dotted gray;
display: flex;
flex-flow: column nowrap;
justify-content: space-evenly;
.title {
margin-top: 1vh;
font-weight: bold;
text-align: center;
}
.subtitle {
font-size: 1rem;
text-align: center;
}
.details {
margin: 1vh 1em;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
line-height: 1.1rem;
}
.instructions {
text-align: center;
font-style: italic;
}
.players {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
gap: 1em;
.equal {
padding: 0.2em 1em;
border: solid 1px gray;
}
.player {
padding: 0.2em 1em;
border: solid 1px gray;
flex: 1;
}
}
.signatures {
height: 8vh;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
.signature {
font-style: italic;
text-align: left;
flex: 1;
}
}
}
}
}