26 lines
659 B
CSS
26 lines
659 B
CSS
table.table-data .abnormal_ref::after {
|
|
content: ' *';
|
|
}
|
|
table.table-data .abnormal_ref_low::after {
|
|
content: ' L';
|
|
}
|
|
table.table-data .abnormal_ref_high::after {
|
|
content: ' H';
|
|
}
|
|
table.table-data .abnormal_iqr, table.table-data .abnormal_iqr_low.abnormal_iqr_high {
|
|
color: #f39a27;
|
|
}
|
|
table.table-data .abnormal_iqr_low {
|
|
color: #976ed7;
|
|
}
|
|
table.table-data .abnormal_iqr_high {
|
|
color: #c23b23;
|
|
}
|
|
table.table-data .abnormal_ref, table.table-data .abnormal_iqr {
|
|
background-color: #fbffde;
|
|
}
|
|
table.table-data .abnormal_ref_low.abnormal_iqr_low, table.table-data .abnormal_ref_high.abnormal_iqr_high {
|
|
font-weight: bold;
|
|
background-color: #ffd1d1;
|
|
}
|