29 lines
524 B
CSS
29 lines
524 B
CSS
/*rorschach*/
|
|
/*print*/
|
|
.field__label {
|
|
display: none; }
|
|
|
|
table {
|
|
border-collapse: collapse; }
|
|
table thead th {
|
|
border: 1px solid #333;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
padding: 1rem;
|
|
background-color: grey; }
|
|
table tbody td {
|
|
border: 1px solid #333;
|
|
text-align: center;
|
|
padding: 1rem;
|
|
background-color: white; }
|
|
table .field__label {
|
|
display: none; }
|
|
|
|
body {
|
|
margin: 3rem; }
|
|
|
|
@media print {
|
|
@page {
|
|
margin: 5mm !important;
|
|
size: landscape !important; } }
|