<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    font-family: monospace;
}
favorites {
    display: table;
    width: 100%;
    border: thin solid black;
    border-spacing: 2px;
}
title {
    display: table-caption;
    font-size: 90%;
    text-align: right;
    padding: 5px;
}
cols {
    display: table-column-group;
}
cols album, cols artist, cols released {
    display: table-column;
}
headings {
    display: table-header-group;
}
records {
    display: table-row-group;
}
record {
    display: table-row;   
}
record &gt; * {
    display: table-cell;
    padding: 5px;
}
footers {
    display: table-footer-group;
}
footers &gt; record &gt; *, headings &gt; record &gt; * {
    border: thin solid black;
    text-align: center;
    font-weight: bold;
}
records &gt; record &gt; * {
    font-size: 120%;
}</pre></body></html>