diff options
author | Hakim El Hattab | 2018-08-01 10:34:55 +0200 |
---|---|---|
committer | Hakim El Hattab | 2018-08-01 10:34:55 +0200 |
commit | b6aa0cac2392d69c93bda583c88cb6c4fd82b095 (patch) | |
tree | 4adab8ecbbce1db6a785700503d142dbad04c735 /css/theme/moon.css | |
parent | f6f7f58537c21435c4e2ffe8b538216eeac16ae4 (diff) | |
parent | b9bb353a11bb7bcd1f79a40a80e0d5dfcca05591 (diff) |
Merge branch 'dev' of github.com:hakimel/reveal.js
Diffstat (limited to 'css/theme/moon.css')
-rw-r--r-- | css/theme/moon.css | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/css/theme/moon.css b/css/theme/moon.css index c7705d9..52b3f67 100644 --- a/css/theme/moon.css +++ b/css/theme/moon.css @@ -34,8 +34,8 @@ body { background: #d33682; text-shadow: none; } -.reveal .slides > section, -.reveal .slides > section > section { +.reveal .slides section, +.reveal .slides section > section { line-height: 1.3; font-weight: inherit; } @@ -193,10 +193,12 @@ body { border-bottom: none; } .reveal sup { - vertical-align: super; } + vertical-align: super; + font-size: smaller; } .reveal sub { - vertical-align: sub; } + vertical-align: sub; + font-size: smaller; } .reveal small { display: inline-block; @@ -266,3 +268,10 @@ body { -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #002b36; } } |