From: W. Trevor King Date: Fri, 17 Jan 2014 19:28:11 +0000 (-0800) Subject: css/local.css: Add local CSS overrides X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=afa25704f745f99a231f9a311c750c3b851b29b3;p=reveal.js.git 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. --- 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 @@ +