# HG changeset patch # User Mike Becker # Date 1523134918 -7200 # Node ID a7d3e5921ccefd5ba1faa6ab9c95beba37a64978 # Parent 5a91fb7067af7dd57f4ca86f42310b4df70841d3 global table style 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; +}