skeleton.css - Source Code and Tables

Source Code

The border uses my colors of choice:

code {
    font-size: 100%;
    border: 1px solid #BABABA;
}

Tables

Because I create some tables directly in HTML and with cells having substantial amount of content, these get alligned at the top and vertically centered.

th, td {
    border-bottom: 1px solid #BABABA;
}
td {
    vertical-align: top;
}

Tables without proper thead should still get a top border:

th.no-thead, td.no-thead {
    border-top: 1px solid #BABABA;
}

Copyright © 2016 Uwe Ritzmann - Created with Pelican, Python and Skeleton.