From afa25704f745f99a231f9a311c750c3b851b29b3 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 17 Jan 2014 11:28:11 -0800 Subject: [PATCH] css/local.css: Add local CSS overrides For styling that's more than a one-off for a given element. Here I'm overriding the header alignment, which was previously defined in css/reveal.css: .reveal table th, .reveal table td { text-align: left; padding-right: .3em; } Left-aligne headers over images (on the us-vs-them slide) looks funny to me. We could align the images (in ) too, but I think the current table looks fine with them left-aligned, because the Garnet image is full-width, and the Medusa image is almost full-width. --- css/local.css | 3 +++ index.html | 1 + 2 files changed, 4 insertions(+) create mode 100644 css/local.css diff --git a/css/local.css b/css/local.css new file mode 100644 index 0000000..677054e --- /dev/null +++ b/css/local.css @@ -0,0 +1,3 @@ +.reveal table thead th { + text-align: center; +} diff --git a/index.html b/index.html index 36aec47..8c77c5b 100644 --- a/index.html +++ b/index.html @@ -16,6 +16,7 @@ + -- 2.26.2