diff -r 5a91fb7067af -r a7d3e5921cce web/lightpit.css --- a/web/lightpit.css Sun Apr 01 18:25:31 2018 +0200 +++ b/web/lightpit.css Sat Apr 07 23:01:58 2018 +0200 @@ -47,14 +47,12 @@ text-decoration: none; } -#mainMenu, #mainMenuEntries { +#mainMenu { width: 100%; display: flex; flex-flow: row wrap; -} - -#mainMenu { background: #f0f0f5; + font-size: large; } #subMenu { @@ -83,3 +81,27 @@ #content-area { padding: 1em; } + +table { + border-style: solid; + border-width: 1pt; + border-color: black; + border-collapse: collapse; +} + +th { + text-align: left; + font-weight: bold; + background: lightsteelblue; +} + +th, td { + border-style: solid; + border-width: 1pt; + border-color: black; + padding: .4em; +} + +tr:nth-child(2n) { + background: lightblue; +}