wowana.me

website source


commit 884a3cc702810b4a157ddf65f0aae69cc37023cd
parent 39c02ec576be13acf5aee39252da61b459a85aae
Author: opal hart <opal@wowana.me>
Date:   Fri, 13 Dec 2019 03:50:25 +0000

modify css: improve table styles

- lessen padding for lists inside tables. default is unsightly and
  potentially confusing
- add borders between rows due to complaints regarding accessibility
  related to colourblindness or impaired vision

Diffstat:
Mout/opal.css | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/out/opal.css b/out/opal.css @@ -143,6 +143,9 @@ table { border-collapse: collapse; border-spacing: 0; } +table tr { + border: .1em solid #d178ed; +} table tr:nth-child(2n+1) { background-color: #e7e2ff; } @@ -152,6 +155,10 @@ table th, table td { table th { background-color: #d178ed; } +table ol, +table ul { + padding-left: 1em; +} .cloudflare-warning { display: inline-block; overflow: hidden;