CSS to make table notation more readable

/* Add lines between cells */
.table-block .cell {
    /* Right and bottom of all cells */
    border-right: solid 1px rgba(255,255,255, 0.2);
    border-bottom: solid 1px rgba(255,255,255, 0.2);
}
.table-block .cell:first-child {
    /* Left of the first column cells */
    border-left: solid 1px rgba(255,255,255, 0.2);
}

This CSS code modifies the appearance of tables. It adds lines between cells to make the table easier to read. Currently, it only supports dark mode, but it works fine in /blu3mo. If needed, I may make further adjustments later. For more information on customizing the appearance of tables, you can visit /customize/テーブルの見た目をカスタマイズ.