diff options
Diffstat (limited to 'css/reveal.css')
-rw-r--r-- | css/reveal.css | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/css/reveal.css b/css/reveal.css index e1985bf..2696e91 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -180,12 +180,11 @@ body { } .reveal .slides section .fragment.current-visible { - opacity:0; -} - -.reveal .slides section .fragment.current-visible.current-fragment { - opacity:1; + opacity: 0; } + .reveal .slides section .fragment.current-visible.current-fragment { + opacity: 1; + } .reveal .slides section .fragment.highlight-red, .reveal .slides section .fragment.highlight-current-red, @@ -215,6 +214,13 @@ body { color: #1b91ff; } +.reveal .slides section .fragment.strike { + opacity: 1; +} + .reveal .slides section .fragment.strike.visible { + text-decoration: line-through; + } + /********************************************* * DEFAULT ELEMENT STYLES @@ -254,6 +260,7 @@ body { } .reveal ol, +.reveal dl, .reveal ul { display: inline-block; @@ -285,6 +292,14 @@ body { margin-left: 40px; } +.reveal dt { + font-weight: bold; +} + +.reveal dd { + margin-left: 40px; +} + .reveal p { margin-bottom: 10px; line-height: 1.2em; @@ -521,6 +536,7 @@ body { height: 100%; -ms-touch-action: none; + touch-action: none; } .reveal .slides { |