You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.2 KiB
CSS

1 year ago
body{
margin: 0;
display: block;
}
.page {
1 year ago
height: 297mm;
width: 210mm;
margin: 0 auto;
}
1 year ago
@page {
size: a4;
}
1 year ago
.card {
float: left;
1 year ago
width: calc(210mm / 2 - 10mm); /* Adjusted width to fit 2 cards per row with margins */
height: calc(297mm / 4 - 10mm); /* Adjusted height to fit 4 rows per page with margins */
border: 1mm solid salmon;
margin: 5mm;
box-sizing: border-box; /* Includes the border in the width and height calculation */
overflow: hidden;
1 year ago
}
h1{
font-size: 10pt;
font-family: 'Courier New', Courier, monospace;
color: #c4007a;
1 year ago
padding-left: 5mm;
text-align: center;
padding-top: 50px;
1 year ago
overflow: hidden;
}
p{
font-size: 10pt;
font-family:'Fjord', sans-serif;
color: #9594c4;
1 year ago
padding-right: 5mm;
text-align: center;
1 year ago
height:fit-content;
overflow: hidden;
}
img {
1 year ago
width: 100%;;
height: 100%;
object-fit: contain;
}
@media print {
* {
box-sizing: border-box;
}
.body{
margin: 0;
}
@page{
size: a4;
margin: 0;
}
.overflowing-element {
overflow: hidden;
}
}