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,12 +531,11 @@
max-width: unset !important; max-width: unset !important;
} }
}
.page { .page {
width: 96vw; width: 96vw;
height: 96vh; height: 96vh;
page-break-after: always; page-break-after: always;
.page-item { .page-item {
font-size: 1.4rem; font-size: 1.4rem;
line-height: 1.5rem; line-height: 1.5rem;
@@ -540,15 +544,18 @@
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
justify-content: space-evenly; justify-content: space-evenly;
.title { .title {
margin-top: 1vh; margin-top: 1vh;
font-weight: bold; font-weight: bold;
text-align: center; text-align: center;
} }
.subtitle { .subtitle {
font-size: 1rem; font-size: 1rem;
text-align: center; text-align: center;
} }
.details { .details {
margin: 1vh 1em; margin: 1vh 1em;
display: flex; display: flex;
@@ -556,30 +563,36 @@
justify-content: space-between; justify-content: space-between;
line-height: 1.1rem; line-height: 1.1rem;
} }
.instructions { .instructions {
text-align: center; text-align: center;
font-style: italic; font-style: italic;
} }
.players { .players {
display: flex; display: flex;
flex-flow: row nowrap; flex-flow: row nowrap;
justify-content: space-between; justify-content: space-between;
gap: 1em; gap: 1em;
.equal { .equal {
padding: 0.2em 1em; padding: 0.2em 1em;
border: solid 1px gray; border: solid 1px gray;
} }
.player { .player {
padding: 0.2em 1em; padding: 0.2em 1em;
border: solid 1px gray; border: solid 1px gray;
flex: 1; flex: 1;
} }
} }
.signatures { .signatures {
height: 8vh; height: 8vh;
display: flex; display: flex;
flex-flow: row nowrap; flex-flow: row nowrap;
justify-content: space-between; justify-content: space-between;
.signature { .signature {
font-style: italic; font-style: italic;
text-align: left; text-align: left;
@@ -588,4 +601,17 @@
} }
} }
} }
.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;
}
}
} }