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; +}