aboutsummaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorFlorian Haas <florian@hastexo.com>2013-10-30 14:34:27 +0100
committerFlorian Haas <florian@hastexo.com>2013-11-08 00:39:34 +0800
commit0069e3ad14fda52c6ad2413c31131fd9e50800c3 (patch)
tree735d74c300eec8b174d307c11b69986444bca7e8 /css
parentc7077cf798326d820a520f2692c5ae29e2f7b4dd (diff)
downloadfreenode-live-2017-presentation-0069e3ad14fda52c6ad2413c31131fd9e50800c3.tar
freenode-live-2017-presentation-0069e3ad14fda52c6ad2413c31131fd9e50800c3.tar.gz
CSS: Don't override font-weight for section
.slides>section and .slides>section>section set the font-weight to "normal". This overrides any font-weight setting a theme may set at the body or .reveal level, and requires a theme author to also specifically set the font-weight for .slides>section and .slides>section>section. That's tedious and also counterintuitive. Adopt a saner default by setting the font-weight to inherit.
Diffstat (limited to 'css')
-rw-r--r--css/reveal.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/css/reveal.css b/css/reveal.css
index 7f1dd74..d03409b 100644
--- a/css/reveal.css
+++ b/css/reveal.css
@@ -530,7 +530,7 @@ body {
z-index: 10;
line-height: 1.2em;
- font-weight: normal;
+ font-weight: inherit;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;