From 0d383c911e598552d0342feda70b5c759dd1ca8e Mon Sep 17 00:00:00 2001 From: Joe James Date: Mon, 17 Feb 2020 13:41:11 -0600 Subject: [PATCH] Create table.css --- css/table.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 css/table.css diff --git a/css/table.css b/css/table.css new file mode 100644 index 0000000..56efdba --- /dev/null +++ b/css/table.css @@ -0,0 +1,22 @@ +table, tr, td, th { + font-family: sans-serif; + border: 1px solid black; + border-color: gray; + border-collapse: collapse; + padding: 8px; +} +table { + width: 50%; +} +th { + background-color: beige; +} +td { + text-align: center; +} +tr:hover { + background-color: #D1F2EB; +} +#boss { + font-weight: bold; +}