Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
606 B

3 years ago
.cell {
3 years ago
background-color: gainsboro;
3 years ago
}
.grid-row {
3 years ago
border: 1px solid gray;
3 years ago
}
.two-grid {
display: grid;
grid-template-columns: auto auto;
font-size: 10px;
grid-auto-columns: 1fr 200px;
}
.three-grid {
display: grid;
grid-template-columns: auto auto auto;
font-size: 10px;
grid-auto-columns: 1fr 200px;
}
3 years ago
.govuk-heading-s {
font-size: small;
margin-bottom: 0;
margin-top: 5px;
3 years ago
}
3 years ago
.govuk-body{
font-size: 10px;
margin-bottom: 0;
}
3 years ago
@media print {
body {
-webkit-print-color-adjust: exact;
}
.cell {
background-color: lightgrey;
}
3 years ago
.noprint {display:none;}
3 years ago
}