From 1aaadf15d5fedc8d8f3b6cdbadf09ac8c8d5dbea Mon Sep 17 00:00:00 2001 From: Blaise Thompson Date: Sat, 14 Sep 2019 16:03:40 -0500 Subject: refactor --- public/style.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 public/style.css (limited to 'public/style.css') diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..c0fb979 --- /dev/null +++ b/public/style.css @@ -0,0 +1,32 @@ +a { + text-decoration: none; + color: #81a2be; +} + +body { + font-family: sans-serif; + margin: 40px auto; + max-width: 650px; + line-height: 1.6; + font-size: 16px; + background-color: #1d1f21; + color: #c5c8c6; + padding: 0 10px; + text-align: left; +} + +table, th, td { + border: 1px solid #969896; + border-collapse: collapse; +} + +th, td { + padding: 5px; +} + +.center { + display: block; + margin-left: auto; + margin-right: auto; + width: 50%; +} -- cgit v1.2.3