B&W printing for color disks

This commit is contained in:
Claude Brisson
2024-01-31 14:13:13 +01:00
parent f547fca497
commit 3f8988c8e4

View File

@@ -493,14 +493,17 @@
font-size: 1rem !important; font-size: 1rem !important;
line-height: 1.1rem !important; line-height: 1.1rem !important;
min-width: 60vw; min-width: 60vw;
&::before { &::before {
top: 0; top: 0;
} }
} }
#paired { #paired {
display: none !important; display: none !important;
} }
} }
&:not(.nogame) { &:not(.nogame) {
#paired { #paired {
max-height: unset !important; max-height: unset !important;
@@ -508,10 +511,12 @@
font-size: 1rem !important; font-size: 1rem !important;
line-height: 1.1rem !important; line-height: 1.1rem !important;
min-width: 60vw; min-width: 60vw;
&::before { &::before {
top: 0; top: 0;
} }
} }
#pairables { #pairables {
display: none !important; display: none !important;
} }
@@ -526,66 +531,87 @@
max-width: unset !important; max-width: unset !important;
} }
} .page {
width: 96vw;
height: 96vh;
page-break-after: always;
.page { .page-item {
width: 96vw; font-size: 1.4rem;
height: 96vh; line-height: 1.5rem;
page-break-after: always; height: 24vh;
.page-item { border-bottom: 1px dotted gray;
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; display: flex;
flex-flow: row nowrap; flex-flow: column nowrap;
justify-content: space-between; justify-content: space-evenly;
line-height: 1.1rem;
} .title {
.instructions { margin-top: 1vh;
text-align: center; font-weight: bold;
font-style: italic; text-align: center;
}
.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; .subtitle {
border: solid 1px gray; font-size: 1rem;
flex: 1; text-align: center;
} }
}
.signatures { .details {
height: 8vh; margin: 1vh 1em;
display: flex; display: flex;
flex-flow: row nowrap; flex-flow: row nowrap;
justify-content: space-between; justify-content: space-between;
.signature { line-height: 1.1rem;
}
.instructions {
text-align: center;
font-style: italic; font-style: italic;
text-align: left; }
flex: 1;
.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;
}
} }
} }
} }
.ui.red.circular.label {
background-color: white;
color: white;
border-color: black;
text-decoration: solid line-through black;
}
.ui.green.circular.label {
background-color: white;
color: black;
border-color: black;
font-weight: bold;
}
} }
} }