From 203aaac19f96499e470bb460a78ce3bcbb3c3d28 Mon Sep 17 00:00:00 2001 From: Zachary Vance Date: Sun, 6 Jun 2021 12:34:34 -0700 Subject: [PATCH] markdown --- games/markdown.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 games/markdown.css diff --git a/games/markdown.css b/games/markdown.css new file mode 100644 index 0000000..48de515 --- /dev/null +++ b/games/markdown.css @@ -0,0 +1,24 @@ +table, th, td { + border: 1px solid black; +} + +table { + border-collapse: collapse; +} + +table { + width: 100%; +} + +th { + background-color: #FFFFDD; + min-height: 50px; +} + +tr.alt td { + background-color: #EAF2D3; +} + +img { + max-width: 300px; +} -- 2.47.3