diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-03-11 03:35:10 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-03-11 03:35:10 +0100 |
commit | a699e2e08164f615bbdae2a11d08099efea5a59d (patch) | |
tree | f7cb62b2abd1bcaab4a3aa4c0b9c03db98376c63 | |
parent | 0cd009c0a83b81e13e71c3800e7a4b19ae6f1208 (diff) | |
download | website-a699e2e08164f615bbdae2a11d08099efea5a59d.tar.xz |
style: add style for tables
-rw-r--r-- | src/style.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/style.css b/src/style.css index ffcf93f..706e632 100644 --- a/src/style.css +++ b/src/style.css @@ -114,6 +114,18 @@ blockquote:after { color: #ccc; } +table { + margin: 1rem auto; + border: 2px solid gray; + border-collapse: collapse; +} +th, td { + width: 16%; + font-size: 14px; + border: 1px solid gray; + padding: 0.25rem; +} + img.picture-me { float: right; border: 2px solid; @@ -208,4 +220,3 @@ footer #emblem img { font-weight: normal; font-style: normal; } - |