Home To log in, use the button in gomuks web settings.

Theme better-tables v2 by [@nex:nexy7574.co.uk]

A theme that enhances the display of HTML tables by giving them a distinct alternating background colour, defined cells with borders, and a generous amount of padding within the cells.

Last updated at 2025-01-31 22:03:35.122832 +0000 +0000

Raw CSS (or without autoupdate) Version history Edit theme
To use the theme, paste this into your custom CSS:
@import url("https://css.gomuks.app/theme/better-tables.css");
Preview image #1 Preview image #2
.html-body {
    table {
        border-collapse: collapse;
        display: table;
        border-spacing: 0;
    }

    table th {
        border: 2px solid var(--border-color);
    }

    table tr {
        background-color: var(--timeline-hover-bg-color);
    }

    table tr:nth-child(2n) {
        background-color: var(--background-color)
    }

    table td {
        padding: 0.5rem;
        border: 1px solid var(--border-color)
    }
}