hyla 1.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/Gemfile.lock +35 -7
- data/README.adoc +10 -2
- data/bin/hyla +16 -13
- data/hyla.gemspec +6 -3
- data/lib/hyla.rb +5 -1
- data/lib/hyla/command.rb +12 -10
- data/lib/hyla/commands/create.rb +21 -12
- data/lib/hyla/commands/generate.rb +168 -59
- data/lib/hyla/commands/new.rb +36 -15
- data/lib/hyla/commands/watch.rb +6 -2
- data/lib/hyla/configuration.rb +169 -27
- data/lib/hyla/core_ext.rb +24 -0
- data/lib/hyla/project.rb +1 -1
- data/lib/resources/backends/haml/deckjs/block_admonition.html.haml +14 -0
- data/lib/resources/backends/haml/deckjs/block_audio.html.haml +7 -0
- data/lib/resources/backends/haml/deckjs/block_colist.html.haml +21 -0
- data/lib/resources/backends/haml/deckjs/block_dlist.html.haml +54 -0
- data/lib/resources/backends/haml/deckjs/block_example.haml.haml +5 -0
- data/lib/resources/backends/haml/deckjs/block_floating_title.html.haml +1 -0
- data/lib/resources/backends/haml/deckjs/block_image.html.haml +11 -0
- data/lib/resources/backends/haml/deckjs/block_listing.html.haml +32 -0
- data/lib/resources/backends/haml/deckjs/block_literal.html.haml +5 -0
- data/lib/resources/backends/haml/deckjs/block_olist.html.haml +11 -0
- data/lib/resources/backends/haml/deckjs/block_open.html.haml +5 -0
- data/lib/resources/backends/haml/deckjs/block_page_break.html.haml +1 -0
- data/lib/resources/backends/haml/deckjs/block_paragraph.html.haml +4 -0
- data/lib/resources/backends/haml/deckjs/block_pass.html.haml +1 -0
- data/lib/resources/backends/haml/deckjs/block_preamble.html.haml +3 -0
- data/lib/resources/backends/haml/deckjs/block_quote.html.haml +12 -0
- data/lib/resources/backends/haml/deckjs/block_ruler.html.haml +1 -0
- data/lib/resources/backends/haml/deckjs/block_sidebar.html.haml +5 -0
- data/lib/resources/backends/haml/deckjs/block_table.html.haml +48 -0
- data/lib/resources/backends/haml/deckjs/block_ulist.html.haml +25 -0
- data/lib/resources/backends/haml/deckjs/block_verse.html.haml +13 -0
- data/lib/resources/backends/haml/deckjs/block_video.html.haml +24 -0
- data/lib/resources/backends/haml/deckjs/document.html.haml +182 -0
- data/lib/resources/backends/haml/deckjs/embedded.html.haml +10 -0
- data/lib/resources/backends/haml/deckjs/inline_anchor.html.haml +12 -0
- data/lib/resources/backends/haml/deckjs/inline_break.html.haml +2 -0
- data/lib/resources/backends/haml/deckjs/inline_callout.html.haml +7 -0
- data/lib/resources/backends/haml/deckjs/inline_footnote.html.haml +8 -0
- data/lib/resources/backends/haml/deckjs/inline_image.html.haml +24 -0
- data/lib/resources/backends/haml/deckjs/inline_indexterm.html.haml +2 -0
- data/lib/resources/backends/haml/deckjs/inline_quoted.html.haml +19 -0
- data/lib/resources/backends/haml/deckjs/section.html.haml +7 -0
- data/lib/resources/backends/haml/docbook45/block_admonition.xml.haml +7 -0
- data/lib/resources/backends/haml/docbook45/block_colist.xml.haml +8 -0
- data/lib/resources/backends/haml/docbook45/block_dlist.xml.haml +61 -0
- data/lib/resources/backends/haml/docbook45/block_example.xml.haml +14 -0
- data/lib/resources/backends/haml/docbook45/block_floating_title.xml.haml +1 -0
- data/lib/resources/backends/haml/docbook45/block_image.xml.haml +8 -0
- data/lib/resources/backends/haml/docbook45/block_listing.xml.haml +14 -0
- data/lib/resources/backends/haml/docbook45/block_literal.xml.haml +7 -0
- data/lib/resources/backends/haml/docbook45/block_olist.xml.haml +8 -0
- data/lib/resources/backends/haml/docbook45/block_open.xml.haml +25 -0
- data/lib/resources/backends/haml/docbook45/block_page_break.xml.haml +1 -0
- data/lib/resources/backends/haml/docbook45/block_paragraph.xml.haml +6 -0
- data/lib/resources/backends/haml/docbook45/block_pass.xml.haml +1 -0
- data/lib/resources/backends/haml/docbook45/block_preamble.xml.haml +7 -0
- data/lib/resources/backends/haml/docbook45/block_quote.xml.haml +13 -0
- data/lib/resources/backends/haml/docbook45/block_ruler.xml.haml +2 -0
- data/lib/resources/backends/haml/docbook45/block_sidebar.xml.haml +7 -0
- data/lib/resources/backends/haml/docbook45/block_table.xml.haml +37 -0
- data/lib/resources/backends/haml/docbook45/block_ulist.xml.haml +18 -0
- data/lib/resources/backends/haml/docbook45/block_verse.xml.haml +10 -0
- data/lib/resources/backends/haml/docbook45/document.xml.haml +63 -0
- data/lib/resources/backends/haml/docbook45/embedded.xml.haml +1 -0
- data/lib/resources/backends/haml/docbook45/helpers.rb +7 -0
- data/lib/resources/backends/haml/docbook45/inline_anchor.xml.haml +13 -0
- data/lib/resources/backends/haml/docbook45/inline_break.xml.haml +2 -0
- data/lib/resources/backends/haml/docbook45/inline_callout.xml.haml +1 -0
- data/lib/resources/backends/haml/docbook45/inline_footnote.xml.haml +5 -0
- data/lib/resources/backends/haml/docbook45/inline_image.xml.haml +5 -0
- data/lib/resources/backends/haml/docbook45/inline_indexterm.xml.haml +18 -0
- data/lib/resources/backends/haml/docbook45/inline_quoted.xml.haml +21 -0
- data/lib/resources/backends/haml/docbook45/section.xml.haml +5 -0
- data/lib/resources/backends/haml/html5/block_admonition.html.haml +14 -0
- data/lib/resources/backends/haml/html5/block_audio.html.haml +7 -0
- data/lib/resources/backends/haml/html5/block_colist.html.haml +21 -0
- data/lib/resources/backends/haml/html5/block_dlist.html.haml +54 -0
- data/lib/resources/backends/haml/html5/block_example.haml.haml +5 -0
- data/lib/resources/backends/haml/html5/block_floating_title.html.haml +1 -0
- data/lib/resources/backends/haml/html5/block_image.html.haml +11 -0
- data/lib/resources/backends/haml/html5/block_listing.html.haml +31 -0
- data/lib/resources/backends/haml/html5/block_literal.html.haml +5 -0
- data/lib/resources/backends/haml/html5/block_math.html.haml +10 -0
- data/lib/resources/backends/haml/html5/block_olist.html.haml +9 -0
- data/lib/resources/backends/haml/html5/block_open.html.haml +15 -0
- data/lib/resources/backends/haml/html5/block_page_break.html.haml +1 -0
- data/lib/resources/backends/haml/html5/block_paragraph.html.haml +4 -0
- data/lib/resources/backends/haml/html5/block_pass.html.haml +1 -0
- data/lib/resources/backends/haml/html5/block_preamble.html.haml +6 -0
- data/lib/resources/backends/haml/html5/block_quote.html.haml +12 -0
- data/lib/resources/backends/haml/html5/block_ruler.html.haml +1 -0
- data/lib/resources/backends/haml/html5/block_sidebar.html.haml +5 -0
- data/lib/resources/backends/haml/html5/block_table.html.haml +47 -0
- data/lib/resources/backends/haml/html5/block_toc.html.haml +11 -0
- data/lib/resources/backends/haml/html5/block_ulist.html.haml +25 -0
- data/lib/resources/backends/haml/html5/block_verse.html.haml +13 -0
- data/lib/resources/backends/haml/html5/block_video.html.haml +27 -0
- data/lib/resources/backends/haml/html5/document.html.haml +114 -0
- data/lib/resources/backends/haml/html5/embedded.html.haml +10 -0
- data/lib/resources/backends/haml/html5/helpers.rb +7 -0
- data/lib/resources/backends/haml/html5/inline_anchor.html.haml +11 -0
- data/lib/resources/backends/haml/html5/inline_break.html.haml +2 -0
- data/lib/resources/backends/haml/html5/inline_button.html.haml +1 -0
- data/lib/resources/backends/haml/html5/inline_callout.html.haml +7 -0
- data/lib/resources/backends/haml/html5/inline_footnote.html.haml +8 -0
- data/lib/resources/backends/haml/html5/inline_image.html.haml +24 -0
- data/lib/resources/backends/haml/html5/inline_indexterm.html.haml +2 -0
- data/lib/resources/backends/haml/html5/inline_kbd.html.haml +8 -0
- data/lib/resources/backends/haml/html5/inline_menu.html.haml +15 -0
- data/lib/resources/backends/haml/html5/inline_quoted.html.haml +22 -0
- data/lib/resources/backends/haml/html5/section.html.haml +21 -0
- data/lib/resources/backends/haml/revealjs/block_image.html.haml +11 -0
- data/lib/resources/backends/haml/revealjs/block_olist.html.haml +8 -0
- data/lib/resources/backends/haml/revealjs/block_ulist.html.haml +8 -0
- data/lib/resources/backends/haml/revealjs/document.html.haml +61 -0
- data/lib/resources/backends/haml/revealjs/section.html.haml +10 -0
- data/lib/resources/backends/slim/docbook45/block_admonition.xml.slim +7 -0
- data/lib/resources/backends/slim/docbook45/block_colist.xml.slim +8 -0
- data/lib/resources/backends/slim/docbook45/block_dlist.xml.slim +61 -0
- data/lib/resources/backends/slim/docbook45/block_example.xml.slim +13 -0
- data/lib/resources/backends/slim/docbook45/block_floating_title.xml.slim +1 -0
- data/lib/resources/backends/slim/docbook45/block_image.xml.slim +7 -0
- data/lib/resources/backends/slim/docbook45/block_listing.xml.slim +14 -0
- data/lib/resources/backends/slim/docbook45/block_literal.xml.slim +7 -0
- data/lib/resources/backends/slim/docbook45/block_olist.xml.slim +8 -0
- data/lib/resources/backends/slim/docbook45/block_open.xml.slim +25 -0
- data/lib/resources/backends/slim/docbook45/block_page_break.xml.slim +1 -0
- data/lib/resources/backends/slim/docbook45/block_paragraph.xml.slim +6 -0
- data/lib/resources/backends/slim/docbook45/block_pass.xml.slim +1 -0
- data/lib/resources/backends/slim/docbook45/block_preamble.xml.slim +7 -0
- data/lib/resources/backends/slim/docbook45/block_quote.xml.slim +13 -0
- data/lib/resources/backends/slim/docbook45/block_ruler.xml.slim +2 -0
- data/lib/resources/backends/slim/docbook45/block_sidebar.xml.slim +7 -0
- data/lib/resources/backends/slim/docbook45/block_table.xml.slim +36 -0
- data/lib/resources/backends/slim/docbook45/block_ulist.xml.slim +18 -0
- data/lib/resources/backends/slim/docbook45/block_verse.xml.slim +10 -0
- data/lib/resources/backends/slim/docbook45/document.xml.slim +63 -0
- data/lib/resources/backends/slim/docbook45/embedded.xml.slim +1 -0
- data/lib/resources/backends/slim/docbook45/helpers.rb +9 -0
- data/lib/resources/backends/slim/docbook45/inline_anchor.xml.slim +13 -0
- data/lib/resources/backends/slim/docbook45/inline_break.xml.slim +2 -0
- data/lib/resources/backends/slim/docbook45/inline_callout.xml.slim +1 -0
- data/lib/resources/backends/slim/docbook45/inline_footnote.xml.slim +4 -0
- data/lib/resources/backends/slim/docbook45/inline_image.xml.slim +4 -0
- data/lib/resources/backends/slim/docbook45/inline_indexterm.xml.slim +16 -0
- data/lib/resources/backends/slim/docbook45/inline_quoted.xml.slim +21 -0
- data/lib/resources/backends/slim/docbook45/section.xml.slim +5 -0
- data/lib/resources/backends/slim/document.html.bk.slim +335 -0
- data/lib/resources/backends/slim/dzslides/block_admonition.html.slim +19 -0
- data/lib/resources/backends/slim/dzslides/block_colist.html.slim +20 -0
- data/lib/resources/backends/slim/dzslides/block_dlist.html.slim +10 -0
- data/lib/resources/backends/slim/dzslides/block_example.html.slim +4 -0
- data/lib/resources/backends/slim/dzslides/block_floating_title.html.slim +1 -0
- data/lib/resources/backends/slim/dzslides/block_image.html.slim +14 -0
- data/lib/resources/backends/slim/dzslides/block_listing.html.slim +8 -0
- data/lib/resources/backends/slim/dzslides/block_literal.html.slim +11 -0
- data/lib/resources/backends/slim/dzslides/block_olist.html.slim +6 -0
- data/lib/resources/backends/slim/dzslides/block_open.html.slim +4 -0
- data/lib/resources/backends/slim/dzslides/block_paragraph.html.slim +1 -0
- data/lib/resources/backends/slim/dzslides/block_pass.html.slim +1 -0
- data/lib/resources/backends/slim/dzslides/block_quote.html.slim +11 -0
- data/lib/resources/backends/slim/dzslides/block_ruler.html.slim +1 -0
- data/lib/resources/backends/slim/dzslides/block_table.html.slim +45 -0
- data/lib/resources/backends/slim/dzslides/block_ulist.html.slim +6 -0
- data/lib/resources/backends/slim/dzslides/block_verse.html.slim +12 -0
- data/lib/resources/backends/slim/dzslides/block_video.html.slim +6 -0
- data/lib/resources/backends/slim/dzslides/document.html.slim +67 -0
- data/lib/resources/backends/slim/dzslides/embedded.html.slim +1 -0
- data/lib/resources/backends/slim/dzslides/helpers.rb +9 -0
- data/lib/resources/backends/slim/dzslides/inline_anchor.html.slim +11 -0
- data/lib/resources/backends/slim/dzslides/inline_break.html.slim +2 -0
- data/lib/resources/backends/slim/dzslides/inline_callout.html.slim +7 -0
- data/lib/resources/backends/slim/dzslides/inline_footnote.html.slim +6 -0
- data/lib/resources/backends/slim/dzslides/inline_image.html.slim +24 -0
- data/lib/resources/backends/slim/dzslides/inline_indexterm.html.slim +2 -0
- data/lib/resources/backends/slim/dzslides/inline_kbd.html.slim +8 -0
- data/lib/resources/backends/slim/dzslides/inline_quoted.html.slim +23 -0
- data/lib/resources/backends/slim/dzslides/section.html.slim +4 -0
- data/lib/resources/backends/slim/html5/block_admonition.html.slim +13 -0
- data/lib/resources/backends/slim/html5/block_audio.html.slim +6 -0
- data/lib/resources/backends/slim/html5/block_colist.html.slim +20 -0
- data/lib/resources/backends/slim/html5/block_dlist.html.slim +53 -0
- data/lib/resources/backends/slim/html5/block_example.html.slim +4 -0
- data/lib/resources/backends/slim/html5/block_floating_title.html.slim +1 -0
- data/lib/resources/backends/slim/html5/block_image.html.slim +10 -0
- data/lib/resources/backends/slim/html5/block_listing.html.slim +31 -0
- data/lib/resources/backends/slim/html5/block_literal.html.slim +4 -0
- data/lib/resources/backends/slim/html5/block_math.html.slim +10 -0
- data/lib/resources/backends/slim/html5/block_olist.html.slim +9 -0
- data/lib/resources/backends/slim/html5/block_open.html.slim +15 -0
- data/lib/resources/backends/slim/html5/block_page_break.html.slim +1 -0
- data/lib/resources/backends/slim/html5/block_paragraph.html.slim +4 -0
- data/lib/resources/backends/slim/html5/block_pass.html.slim +1 -0
- data/lib/resources/backends/slim/html5/block_preamble.html.slim +6 -0
- data/lib/resources/backends/slim/html5/block_quote.html.slim +14 -0
- data/lib/resources/backends/slim/html5/block_ruler.html.slim +1 -0
- data/lib/resources/backends/slim/html5/block_sidebar.html.slim +5 -0
- data/lib/resources/backends/slim/html5/block_table.html.slim +45 -0
- data/lib/resources/backends/slim/html5/block_toc.html.slim +12 -0
- data/lib/resources/backends/slim/html5/block_ulist.html.slim +25 -0
- data/lib/resources/backends/slim/html5/block_verse.html.slim +14 -0
- data/lib/resources/backends/slim/html5/block_video.html.slim +27 -0
- data/lib/resources/backends/slim/html5/document.html.slim +112 -0
- data/lib/resources/backends/slim/html5/embedded.html.slim +9 -0
- data/lib/resources/backends/slim/html5/helpers.rb +8 -0
- data/lib/resources/backends/slim/html5/inline_anchor.html.slim +11 -0
- data/lib/resources/backends/slim/html5/inline_break.html.slim +2 -0
- data/lib/resources/backends/slim/html5/inline_button.html.slim +1 -0
- data/lib/resources/backends/slim/html5/inline_callout.html.slim +7 -0
- data/lib/resources/backends/slim/html5/inline_footnote.html.slim +6 -0
- data/lib/resources/backends/slim/html5/inline_image.html.slim +24 -0
- data/lib/resources/backends/slim/html5/inline_indexterm.html.slim +2 -0
- data/lib/resources/backends/slim/html5/inline_kbd.html.slim +8 -0
- data/lib/resources/backends/slim/html5/inline_menu.html.slim +15 -0
- data/lib/resources/backends/slim/html5/inline_quoted.html.slim +22 -0
- data/lib/resources/backends/slim/html5/section.html.slim +20 -0
- data/lib/resources/backends/slim/revealjs/block_admonition.html.slim +13 -0
- data/lib/resources/backends/slim/revealjs/block_audio.html.slim +6 -0
- data/lib/resources/backends/slim/revealjs/block_colist.html.slim +20 -0
- data/lib/resources/backends/slim/revealjs/block_dlist.html.slim +53 -0
- data/lib/resources/backends/slim/revealjs/block_example.html.slim +4 -0
- data/lib/resources/backends/slim/revealjs/block_floating_title.html.slim +1 -0
- data/lib/resources/backends/slim/revealjs/block_image.html.slim +10 -0
- data/lib/resources/backends/slim/revealjs/block_listing.html.slim +31 -0
- data/lib/resources/backends/slim/revealjs/block_literal.html.slim +4 -0
- data/lib/resources/backends/slim/revealjs/block_math.html.slim +10 -0
- data/lib/resources/backends/slim/revealjs/block_olist.html.slim +9 -0
- data/lib/resources/backends/slim/revealjs/block_open.html.slim +15 -0
- data/lib/resources/backends/slim/revealjs/block_page_break.html.slim +1 -0
- data/lib/resources/backends/slim/revealjs/block_paragraph.html.slim +4 -0
- data/lib/resources/backends/slim/revealjs/block_pass.html.slim +1 -0
- data/lib/resources/backends/slim/revealjs/block_preamble.html.slim +6 -0
- data/lib/resources/backends/slim/revealjs/block_quote.html.slim +14 -0
- data/lib/resources/backends/slim/revealjs/block_ruler.html.slim +1 -0
- data/lib/resources/backends/slim/revealjs/block_sidebar.html.slim +5 -0
- data/lib/resources/backends/slim/revealjs/block_table.html.slim +45 -0
- data/lib/resources/backends/slim/revealjs/block_toc.html.slim +12 -0
- data/lib/resources/backends/slim/revealjs/block_ulist.html.slim +25 -0
- data/lib/resources/backends/slim/revealjs/block_verse.html.slim +14 -0
- data/lib/resources/backends/slim/revealjs/block_video.html.slim +27 -0
- data/lib/resources/backends/slim/revealjs/document.html.slim +87 -0
- data/lib/resources/backends/slim/revealjs/embedded.html.slim +9 -0
- data/lib/resources/backends/slim/revealjs/helpers.rb +8 -0
- data/lib/resources/backends/slim/revealjs/inline_anchor.html.slim +11 -0
- data/lib/resources/backends/slim/revealjs/inline_break.html.slim +2 -0
- data/lib/resources/backends/slim/revealjs/inline_button.html.slim +1 -0
- data/lib/resources/backends/slim/revealjs/inline_callout.html.slim +7 -0
- data/lib/resources/backends/slim/revealjs/inline_footnote.html.slim +6 -0
- data/lib/resources/backends/slim/revealjs/inline_image.html.slim +24 -0
- data/lib/resources/backends/slim/revealjs/inline_indexterm.html.slim +2 -0
- data/lib/resources/backends/slim/revealjs/inline_kbd.html.slim +8 -0
- data/lib/resources/backends/slim/revealjs/inline_menu.html.slim +15 -0
- data/lib/resources/backends/slim/revealjs/inline_quoted.html.slim +22 -0
- data/lib/resources/backends/slim/revealjs/section.html.slim +3 -0
- data/lib/resources/deck.js/core/deck.core.css +407 -0
- data/lib/resources/deck.js/core/deck.core.js +498 -0
- data/lib/resources/deck.js/extensions/deck.js-blank/README.md +10 -0
- data/lib/resources/deck.js/extensions/deck.js-blank/deck.blank.js +33 -0
- data/lib/resources/deck.js/extensions/goto/deck.goto.css +41 -0
- data/lib/resources/deck.js/extensions/goto/deck.goto.html +7 -0
- data/lib/resources/deck.js/extensions/goto/deck.goto.js +170 -0
- data/lib/resources/deck.js/extensions/hash/deck.hash.css +13 -0
- data/lib/resources/deck.js/extensions/hash/deck.hash.html +2 -0
- data/lib/resources/deck.js/extensions/hash/deck.hash.js +142 -0
- data/lib/resources/deck.js/extensions/menu/deck.menu.css +47 -0
- data/lib/resources/deck.js/extensions/menu/deck.menu.js +187 -0
- data/lib/resources/deck.js/extensions/navigation/deck.navigation.css +43 -0
- data/lib/resources/deck.js/extensions/navigation/deck.navigation.html +3 -0
- data/lib/resources/deck.js/extensions/navigation/deck.navigation.js +92 -0
- data/lib/resources/deck.js/extensions/scale/deck.scale.css +28 -0
- data/lib/resources/deck.js/extensions/scale/deck.scale.js +170 -0
- data/lib/resources/deck.js/extensions/split/README.md +30 -0
- data/lib/resources/deck.js/extensions/split/deck.split.js +59 -0
- data/lib/resources/deck.js/extensions/status/deck.status.css +18 -0
- data/lib/resources/deck.js/extensions/status/deck.status.html +6 -0
- data/lib/resources/deck.js/extensions/status/deck.status.js +95 -0
- data/lib/resources/deck.js/extensions/toc/deck.toc.css +40 -0
- data/lib/resources/deck.js/extensions/toc/deck.toc.html +12 -0
- data/lib/resources/deck.js/extensions/toc/deck.toc.js +271 -0
- data/lib/resources/deck.js/jquery-1.7.2.min.js +4 -0
- data/lib/resources/deck.js/jquery.min.js +4 -0
- data/lib/resources/deck.js/modernizr.custom.js +4 -0
- data/lib/resources/deck.js/themes/style/beamer.css +286 -0
- data/lib/resources/deck.js/themes/style/neon.css +123 -0
- data/lib/resources/deck.js/themes/style/swiss.css +84 -0
- data/lib/resources/deck.js/themes/style/web-2.0.css +214 -0
- data/lib/resources/deck.js/themes/transition/beamer.css +66 -0
- data/lib/resources/deck.js/themes/transition/fade.css +43 -0
- data/lib/resources/deck.js/themes/transition/horizontal-slide.css +76 -0
- data/lib/resources/deck.js/themes/transition/vertical-slide.css +94 -0
- data/lib/resources/revealjs/LICENSE +19 -0
- data/lib/resources/revealjs/css/print/paper.css +176 -0
- data/lib/resources/revealjs/css/print/pdf.css +190 -0
- data/lib/resources/revealjs/css/reveal.css +1880 -0
- data/lib/resources/revealjs/css/reveal.min.css +7 -0
- data/lib/resources/revealjs/css/theme/README.md +25 -0
- data/lib/resources/revealjs/css/theme/beige.css +148 -0
- data/lib/resources/revealjs/css/theme/blood.css +175 -0
- data/lib/resources/revealjs/css/theme/default.css +148 -0
- data/lib/resources/revealjs/css/theme/moon.css +148 -0
- data/lib/resources/revealjs/css/theme/night.css +136 -0
- data/lib/resources/revealjs/css/theme/serif.css +138 -0
- data/lib/resources/revealjs/css/theme/simple.css +138 -0
- data/lib/resources/revealjs/css/theme/sky.css +145 -0
- data/lib/resources/revealjs/css/theme/solarized.css +148 -0
- data/lib/resources/revealjs/css/theme/source/beige.scss +50 -0
- data/lib/resources/revealjs/css/theme/source/blood.scss +91 -0
- data/lib/resources/revealjs/css/theme/source/default.scss +42 -0
- data/lib/resources/revealjs/css/theme/source/moon.scss +68 -0
- data/lib/resources/revealjs/css/theme/source/night.scss +35 -0
- data/lib/resources/revealjs/css/theme/source/serif.scss +35 -0
- data/lib/resources/revealjs/css/theme/source/simple.scss +38 -0
- data/lib/resources/revealjs/css/theme/source/sky.scss +46 -0
- data/lib/resources/revealjs/css/theme/source/solarized.scss +74 -0
- data/lib/resources/revealjs/css/theme/template/mixins.scss +29 -0
- data/lib/resources/revealjs/css/theme/template/settings.scss +34 -0
- data/lib/resources/revealjs/css/theme/template/theme.scss +170 -0
- data/lib/resources/revealjs/js/reveal.js +3382 -0
- data/lib/resources/revealjs/js/reveal.min.js +9 -0
- data/lib/resources/revealjs/lib/css/zenburn.css +114 -0
- data/lib/resources/revealjs/lib/font/league_gothic-webfont.eot +0 -0
- data/lib/resources/revealjs/lib/font/league_gothic-webfont.svg +230 -0
- data/lib/resources/revealjs/lib/font/league_gothic-webfont.ttf +0 -0
- data/lib/resources/revealjs/lib/font/league_gothic-webfont.woff +0 -0
- data/lib/resources/revealjs/lib/font/league_gothic_license +2 -0
- data/lib/resources/revealjs/lib/js/classList.js +2 -0
- data/lib/resources/revealjs/lib/js/head.min.js +8 -0
- data/lib/resources/revealjs/lib/js/html5shiv.js +7 -0
- data/lib/resources/revealjs/plugin/highlight/highlight.js +32 -0
- data/lib/resources/revealjs/plugin/leap/leap.js +157 -0
- data/lib/resources/revealjs/plugin/markdown/example.html +129 -0
- data/lib/resources/revealjs/plugin/markdown/example.md +31 -0
- data/lib/resources/revealjs/plugin/markdown/markdown.js +392 -0
- data/lib/resources/revealjs/plugin/markdown/marked.js +37 -0
- data/lib/resources/revealjs/plugin/math/math.js +64 -0
- data/lib/resources/revealjs/plugin/multiplex/client.js +13 -0
- data/lib/resources/revealjs/plugin/multiplex/index.js +56 -0
- data/lib/resources/revealjs/plugin/multiplex/master.js +51 -0
- data/lib/resources/revealjs/plugin/notes-server/client.js +57 -0
- data/lib/resources/revealjs/plugin/notes-server/index.js +59 -0
- data/lib/resources/revealjs/plugin/notes-server/notes.html +142 -0
- data/lib/resources/revealjs/plugin/notes/notes.html +267 -0
- data/lib/resources/revealjs/plugin/notes/notes.js +78 -0
- data/lib/resources/revealjs/plugin/postmessage/example.html +39 -0
- data/lib/resources/revealjs/plugin/postmessage/postmessage.js +42 -0
- data/lib/resources/revealjs/plugin/print-pdf/print-pdf.js +44 -0
- data/lib/resources/revealjs/plugin/remotes/remotes.js +39 -0
- data/lib/resources/revealjs/plugin/search/search.js +196 -0
- data/lib/resources/revealjs/plugin/zoom-js/zoom.js +258 -0
- data/lib/resources/styles/asciidoctor.css +652 -0
- data/lib/resources/styles/colony.css +660 -0
- data/lib/resources/styles/foundation-lime.css +657 -0
- data/lib/resources/styles/foundation-potion.css +657 -0
- data/lib/resources/styles/foundation.css +648 -0
- data/lib/resources/styles/github.css +669 -0
- data/lib/resources/styles/golo.css +669 -0
- data/lib/resources/styles/iconic.css +692 -0
- data/lib/resources/styles/maker.css +668 -0
- data/lib/resources/styles/readthedocs.css +669 -0
- data/lib/resources/styles/redhat.css +654 -0
- data/lib/resources/styles/riak.css +689 -0
- data/lib/resources/styles/rocket-panda.css +662 -0
- data/lib/resources/styles/rubygems.css +650 -0
- data/lib/templates/_config.yml +27 -0
- data/lib/templates/{training → book}/GemFile +2 -1
- data/lib/templates/{training → book}/development/audio/ocean_waves.mp3 +0 -0
- data/lib/templates/book/development/book.adoc +121 -0
- data/lib/templates/{training → book}/development/image/hyla_frog.jpg +0 -0
- data/lib/templates/{training → book}/development/video/small.ogv +0 -0
- data/lib/templates/{training → book}/introduction/audio/ocean_waves.mp3 +0 -0
- data/lib/templates/book/introduction/book.adoc +121 -0
- data/lib/templates/{training → book}/introduction/image/hyla_frog.jpg +0 -0
- data/lib/templates/{training → book}/introduction/video/small.ogv +0 -0
- data/lib/templates/book/readme.adoc +10 -0
- data/lib/templates/sample/asciidoc_article.adoc +101 -10
- data/lib/templates/sample/asciidoc_audio.adoc +1 -1
- data/lib/templates/sample/asciidoc_book.adoc +125 -0
- data/lib/templates/sample/asciidoc_image.adoc +26 -0
- data/lib/templates/sample/asciidoc_report.adoc +66 -0
- data/lib/templates/sample/asciidoc_source.adoc +53 -0
- data/lib/templates/sample/asciidoc_table.adoc +36 -0
- data/lib/templates/sample/asciidoc_video.adoc +9 -1
- data/lib/templates/sample/slideshow_revealjs.adoc +26 -0
- data/lib/templates/training-exercises/_config.yml +3 -0
- data/lib/templates/training/{introduction → module-1}/article.adoc +7 -2
- data/lib/templates/training/module-1/audio/ocean_waves.mp3 +0 -0
- data/lib/templates/training/module-1/image/hyla_arborea.jpg +0 -0
- data/lib/templates/training/module-1/video/small.ogv +0 -0
- data/lib/templates/training/{development → module-2}/article.adoc +7 -2
- data/lib/templates/training/module-2/audio/ocean_waves.mp3 +0 -0
- data/lib/templates/training/module-2/image/hyla_arborea.jpg +0 -0
- data/lib/templates/training/module-2/video/small.ogv +0 -0
- data/lib/templates/training/readme.adoc +10 -1
- data/scenario.adoc +113 -20
- data/test/reports/test-1.0.x-11-12-2013.txt +123 -0
- data/todo.adoc +39 -0
- metadata +473 -51
- data/lib/hyla/training.rb +0 -25
- data/lib/templates/sample/asciidoc_source_highlight.adoc +0 -37
- data/lib/templates/training-exercises/Gemfile +0 -4
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright (C) 2013 Hakim El Hattab, http://hakim.se
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
5
|
+
in the Software without restriction, including without limitation the rights
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
8
|
+
furnished to do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
THE SOFTWARE.
|
@@ -0,0 +1,176 @@
|
|
1
|
+
/* Default Print Stylesheet Template
|
2
|
+
by Rob Glazebrook of CSSnewbie.com
|
3
|
+
Last Updated: June 4, 2008
|
4
|
+
|
5
|
+
Feel free (nay, compelled) to edit, append, and
|
6
|
+
manipulate this file as you see fit. */
|
7
|
+
|
8
|
+
|
9
|
+
/* SECTION 1: Set default width, margin, float, and
|
10
|
+
background. This prevents elements from extending
|
11
|
+
beyond the edge of the printed page, and prevents
|
12
|
+
unnecessary background images from printing */
|
13
|
+
body {
|
14
|
+
background: #fff;
|
15
|
+
font-size: 13pt;
|
16
|
+
width: auto;
|
17
|
+
height: auto;
|
18
|
+
border: 0;
|
19
|
+
margin: 0 5%;
|
20
|
+
padding: 0;
|
21
|
+
float: none !important;
|
22
|
+
overflow: visible;
|
23
|
+
}
|
24
|
+
html {
|
25
|
+
background: #fff;
|
26
|
+
width: auto;
|
27
|
+
height: auto;
|
28
|
+
overflow: visible;
|
29
|
+
}
|
30
|
+
|
31
|
+
/* SECTION 2: Remove any elements not needed in print.
|
32
|
+
This would include navigation, ads, sidebars, etc. */
|
33
|
+
.nestedarrow,
|
34
|
+
.controls,
|
35
|
+
.reveal .progress,
|
36
|
+
.reveal.overview,
|
37
|
+
.fork-reveal,
|
38
|
+
.share-reveal,
|
39
|
+
.state-background {
|
40
|
+
display: none !important;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* SECTION 3: Set body font face, size, and color.
|
44
|
+
Consider using a serif font for readability. */
|
45
|
+
body, p, td, li, div, a {
|
46
|
+
font-size: 16pt!important;
|
47
|
+
font-family: Georgia, "Times New Roman", Times, serif !important;
|
48
|
+
color: #000;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* SECTION 4: Set heading font face, sizes, and color.
|
52
|
+
Differentiate your headings from your body text.
|
53
|
+
Perhaps use a large sans-serif for distinction. */
|
54
|
+
h1,h2,h3,h4,h5,h6 {
|
55
|
+
color: #000!important;
|
56
|
+
height: auto;
|
57
|
+
line-height: normal;
|
58
|
+
font-family: Georgia, "Times New Roman", Times, serif !important;
|
59
|
+
text-shadow: 0 0 0 #000 !important;
|
60
|
+
text-align: left;
|
61
|
+
letter-spacing: normal;
|
62
|
+
}
|
63
|
+
/* Need to reduce the size of the fonts for printing */
|
64
|
+
h1 { font-size: 26pt !important; }
|
65
|
+
h2 { font-size: 22pt !important; }
|
66
|
+
h3 { font-size: 20pt !important; }
|
67
|
+
h4 { font-size: 20pt !important; font-variant: small-caps; }
|
68
|
+
h5 { font-size: 19pt !important; }
|
69
|
+
h6 { font-size: 18pt !important; font-style: italic; }
|
70
|
+
|
71
|
+
/* SECTION 5: Make hyperlinks more usable.
|
72
|
+
Ensure links are underlined, and consider appending
|
73
|
+
the URL to the end of the link for usability. */
|
74
|
+
a:link,
|
75
|
+
a:visited {
|
76
|
+
color: #000 !important;
|
77
|
+
font-weight: bold;
|
78
|
+
text-decoration: underline;
|
79
|
+
}
|
80
|
+
/*
|
81
|
+
.reveal a:link:after,
|
82
|
+
.reveal a:visited:after {
|
83
|
+
content: " (" attr(href) ") ";
|
84
|
+
color: #222 !important;
|
85
|
+
font-size: 90%;
|
86
|
+
}
|
87
|
+
*/
|
88
|
+
|
89
|
+
|
90
|
+
/* SECTION 6: more reveal.js specific additions by @skypanther */
|
91
|
+
ul, ol, div, p {
|
92
|
+
visibility: visible;
|
93
|
+
position: static;
|
94
|
+
width: auto;
|
95
|
+
height: auto;
|
96
|
+
display: block;
|
97
|
+
overflow: visible;
|
98
|
+
margin: auto;
|
99
|
+
text-align: left !important;
|
100
|
+
}
|
101
|
+
.reveal .slides {
|
102
|
+
position: static;
|
103
|
+
width: auto;
|
104
|
+
height: auto;
|
105
|
+
|
106
|
+
left: auto;
|
107
|
+
top: auto;
|
108
|
+
margin-left: auto;
|
109
|
+
margin-top: auto;
|
110
|
+
padding: auto;
|
111
|
+
|
112
|
+
overflow: visible;
|
113
|
+
display: block;
|
114
|
+
|
115
|
+
text-align: center;
|
116
|
+
-webkit-perspective: none;
|
117
|
+
-moz-perspective: none;
|
118
|
+
-ms-perspective: none;
|
119
|
+
perspective: none;
|
120
|
+
|
121
|
+
-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */
|
122
|
+
-moz-perspective-origin: 50% 50%;
|
123
|
+
-ms-perspective-origin: 50% 50%;
|
124
|
+
perspective-origin: 50% 50%;
|
125
|
+
}
|
126
|
+
.reveal .slides>section,
|
127
|
+
.reveal .slides>section>section {
|
128
|
+
|
129
|
+
visibility: visible !important;
|
130
|
+
position: static !important;
|
131
|
+
width: 90% !important;
|
132
|
+
height: auto !important;
|
133
|
+
display: block !important;
|
134
|
+
overflow: visible !important;
|
135
|
+
|
136
|
+
left: 0% !important;
|
137
|
+
top: 0% !important;
|
138
|
+
margin-left: 0px !important;
|
139
|
+
margin-top: 0px !important;
|
140
|
+
padding: 20px 0px !important;
|
141
|
+
|
142
|
+
opacity: 1 !important;
|
143
|
+
|
144
|
+
-webkit-transform-style: flat !important;
|
145
|
+
-moz-transform-style: flat !important;
|
146
|
+
-ms-transform-style: flat !important;
|
147
|
+
transform-style: flat !important;
|
148
|
+
|
149
|
+
-webkit-transform: none !important;
|
150
|
+
-moz-transform: none !important;
|
151
|
+
-ms-transform: none !important;
|
152
|
+
transform: none !important;
|
153
|
+
}
|
154
|
+
.reveal section {
|
155
|
+
page-break-after: always !important;
|
156
|
+
display: block !important;
|
157
|
+
}
|
158
|
+
.reveal section .fragment {
|
159
|
+
opacity: 1 !important;
|
160
|
+
visibility: visible !important;
|
161
|
+
|
162
|
+
-webkit-transform: none !important;
|
163
|
+
-moz-transform: none !important;
|
164
|
+
-ms-transform: none !important;
|
165
|
+
transform: none !important;
|
166
|
+
}
|
167
|
+
.reveal section:last-of-type {
|
168
|
+
page-break-after: avoid !important;
|
169
|
+
}
|
170
|
+
.reveal section img {
|
171
|
+
display: block;
|
172
|
+
margin: 15px 0px;
|
173
|
+
background: rgba(255,255,255,1);
|
174
|
+
border: 1px solid #666;
|
175
|
+
box-shadow: none;
|
176
|
+
}
|
@@ -0,0 +1,190 @@
|
|
1
|
+
/* Default Print Stylesheet Template
|
2
|
+
by Rob Glazebrook of CSSnewbie.com
|
3
|
+
Last Updated: June 4, 2008
|
4
|
+
|
5
|
+
Feel free (nay, compelled) to edit, append, and
|
6
|
+
manipulate this file as you see fit. */
|
7
|
+
|
8
|
+
|
9
|
+
/* SECTION 1: Set default width, margin, float, and
|
10
|
+
background. This prevents elements from extending
|
11
|
+
beyond the edge of the printed page, and prevents
|
12
|
+
unnecessary background images from printing */
|
13
|
+
|
14
|
+
* {
|
15
|
+
-webkit-print-color-adjust: exact;
|
16
|
+
}
|
17
|
+
|
18
|
+
body {
|
19
|
+
font-size: 18pt;
|
20
|
+
width: 297mm;
|
21
|
+
height: 229mm;
|
22
|
+
margin: 0 auto !important;
|
23
|
+
border: 0;
|
24
|
+
padding: 0;
|
25
|
+
float: none !important;
|
26
|
+
overflow: visible;
|
27
|
+
}
|
28
|
+
|
29
|
+
html {
|
30
|
+
width: 100%;
|
31
|
+
height: 100%;
|
32
|
+
overflow: visible;
|
33
|
+
}
|
34
|
+
|
35
|
+
@page {
|
36
|
+
size: letter landscape;
|
37
|
+
margin: 0;
|
38
|
+
}
|
39
|
+
|
40
|
+
/* SECTION 2: Remove any elements not needed in print.
|
41
|
+
This would include navigation, ads, sidebars, etc. */
|
42
|
+
.nestedarrow,
|
43
|
+
.controls,
|
44
|
+
.reveal .progress,
|
45
|
+
.reveal.overview,
|
46
|
+
.fork-reveal,
|
47
|
+
.share-reveal,
|
48
|
+
.state-background {
|
49
|
+
display: none !important;
|
50
|
+
}
|
51
|
+
|
52
|
+
/* SECTION 3: Set body font face, size, and color.
|
53
|
+
Consider using a serif font for readability. */
|
54
|
+
body, p, td, li, div {
|
55
|
+
font-size: 18pt;
|
56
|
+
}
|
57
|
+
|
58
|
+
/* SECTION 4: Set heading font face, sizes, and color.
|
59
|
+
Differentiate your headings from your body text.
|
60
|
+
Perhaps use a large sans-serif for distinction. */
|
61
|
+
h1,h2,h3,h4,h5,h6 {
|
62
|
+
text-shadow: 0 0 0 #000 !important;
|
63
|
+
}
|
64
|
+
|
65
|
+
/* SECTION 5: Make hyperlinks more usable.
|
66
|
+
Ensure links are underlined, and consider appending
|
67
|
+
the URL to the end of the link for usability. */
|
68
|
+
a:link,
|
69
|
+
a:visited {
|
70
|
+
font-weight: normal;
|
71
|
+
text-decoration: underline;
|
72
|
+
}
|
73
|
+
|
74
|
+
.reveal pre code {
|
75
|
+
overflow: hidden !important;
|
76
|
+
font-family: monospace !important;
|
77
|
+
}
|
78
|
+
|
79
|
+
|
80
|
+
/* SECTION 6: more reveal.js specific additions by @skypanther */
|
81
|
+
ul, ol, div, p {
|
82
|
+
visibility: visible;
|
83
|
+
position: static;
|
84
|
+
width: auto;
|
85
|
+
height: auto;
|
86
|
+
display: block;
|
87
|
+
overflow: visible;
|
88
|
+
margin: auto;
|
89
|
+
}
|
90
|
+
.reveal {
|
91
|
+
width: auto !important;
|
92
|
+
height: auto !important;
|
93
|
+
overflow: hidden !important;
|
94
|
+
}
|
95
|
+
.reveal .slides {
|
96
|
+
position: static;
|
97
|
+
width: 100%;
|
98
|
+
height: auto;
|
99
|
+
|
100
|
+
left: auto;
|
101
|
+
top: auto;
|
102
|
+
margin: 0 !important;
|
103
|
+
padding: 0 !important;
|
104
|
+
|
105
|
+
overflow: visible;
|
106
|
+
display: block;
|
107
|
+
|
108
|
+
text-align: center;
|
109
|
+
|
110
|
+
-webkit-perspective: none;
|
111
|
+
-moz-perspective: none;
|
112
|
+
-ms-perspective: none;
|
113
|
+
perspective: none;
|
114
|
+
|
115
|
+
-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */
|
116
|
+
-moz-perspective-origin: 50% 50%;
|
117
|
+
-ms-perspective-origin: 50% 50%;
|
118
|
+
perspective-origin: 50% 50%;
|
119
|
+
}
|
120
|
+
.reveal .slides section {
|
121
|
+
|
122
|
+
page-break-after: always !important;
|
123
|
+
|
124
|
+
visibility: visible !important;
|
125
|
+
position: relative !important;
|
126
|
+
width: 100% !important;
|
127
|
+
height: 229mm !important;
|
128
|
+
min-height: 229mm !important;
|
129
|
+
display: block !important;
|
130
|
+
overflow: hidden !important;
|
131
|
+
|
132
|
+
left: 0 !important;
|
133
|
+
top: 0 !important;
|
134
|
+
margin: 0 !important;
|
135
|
+
padding: 2cm 2cm 0 2cm !important;
|
136
|
+
box-sizing: border-box !important;
|
137
|
+
|
138
|
+
opacity: 1 !important;
|
139
|
+
|
140
|
+
-webkit-transform-style: flat !important;
|
141
|
+
-moz-transform-style: flat !important;
|
142
|
+
-ms-transform-style: flat !important;
|
143
|
+
transform-style: flat !important;
|
144
|
+
|
145
|
+
-webkit-transform: none !important;
|
146
|
+
-moz-transform: none !important;
|
147
|
+
-ms-transform: none !important;
|
148
|
+
transform: none !important;
|
149
|
+
}
|
150
|
+
.reveal section.stack {
|
151
|
+
margin: 0 !important;
|
152
|
+
padding: 0 !important;
|
153
|
+
page-break-after: avoid !important;
|
154
|
+
height: auto !important;
|
155
|
+
min-height: auto !important;
|
156
|
+
}
|
157
|
+
.reveal .absolute-element {
|
158
|
+
margin-left: 2.2cm;
|
159
|
+
margin-top: 1.8cm;
|
160
|
+
}
|
161
|
+
.reveal section .fragment {
|
162
|
+
opacity: 1 !important;
|
163
|
+
visibility: visible !important;
|
164
|
+
|
165
|
+
-webkit-transform: none !important;
|
166
|
+
-moz-transform: none !important;
|
167
|
+
-ms-transform: none !important;
|
168
|
+
transform: none !important;
|
169
|
+
}
|
170
|
+
.reveal section .slide-background {
|
171
|
+
position: absolute;
|
172
|
+
top: 0;
|
173
|
+
left: 0;
|
174
|
+
width: 100%;
|
175
|
+
z-index: 0;
|
176
|
+
}
|
177
|
+
.reveal section>* {
|
178
|
+
position: relative;
|
179
|
+
z-index: 1;
|
180
|
+
}
|
181
|
+
.reveal img {
|
182
|
+
box-shadow: none;
|
183
|
+
}
|
184
|
+
.reveal .roll {
|
185
|
+
overflow: visible;
|
186
|
+
line-height: 1em;
|
187
|
+
}
|
188
|
+
.reveal small a {
|
189
|
+
font-size: 16pt !important;
|
190
|
+
}
|
@@ -0,0 +1,1880 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/*!
|
4
|
+
* reveal.js
|
5
|
+
* http://lab.hakim.se/reveal-js
|
6
|
+
* MIT licensed
|
7
|
+
*
|
8
|
+
* Copyright (C) 2013 Hakim El Hattab, http://hakim.se
|
9
|
+
*/
|
10
|
+
|
11
|
+
|
12
|
+
/*********************************************
|
13
|
+
* RESET STYLES
|
14
|
+
*********************************************/
|
15
|
+
|
16
|
+
html, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,
|
17
|
+
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,
|
18
|
+
.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,
|
19
|
+
.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,
|
20
|
+
.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,
|
21
|
+
.reveal b, .reveal u, .reveal i, .reveal center,
|
22
|
+
.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,
|
23
|
+
.reveal fieldset, .reveal form, .reveal label, .reveal legend,
|
24
|
+
.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,
|
25
|
+
.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,
|
26
|
+
.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,
|
27
|
+
.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,
|
28
|
+
.reveal time, .reveal mark, .reveal audio, video {
|
29
|
+
margin: 0;
|
30
|
+
padding: 0;
|
31
|
+
border: 0;
|
32
|
+
font-size: 100%;
|
33
|
+
font: inherit;
|
34
|
+
vertical-align: baseline;
|
35
|
+
}
|
36
|
+
|
37
|
+
.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,
|
38
|
+
.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {
|
39
|
+
display: block;
|
40
|
+
}
|
41
|
+
|
42
|
+
|
43
|
+
/*********************************************
|
44
|
+
* GLOBAL STYLES
|
45
|
+
*********************************************/
|
46
|
+
|
47
|
+
html,
|
48
|
+
body {
|
49
|
+
width: 100%;
|
50
|
+
height: 100%;
|
51
|
+
overflow: hidden;
|
52
|
+
}
|
53
|
+
|
54
|
+
body {
|
55
|
+
position: relative;
|
56
|
+
line-height: 1;
|
57
|
+
}
|
58
|
+
|
59
|
+
::selection {
|
60
|
+
background: #FF5E99;
|
61
|
+
color: #fff;
|
62
|
+
text-shadow: none;
|
63
|
+
}
|
64
|
+
|
65
|
+
|
66
|
+
/*********************************************
|
67
|
+
* HEADERS
|
68
|
+
*********************************************/
|
69
|
+
|
70
|
+
.reveal h1,
|
71
|
+
.reveal h2,
|
72
|
+
.reveal h3,
|
73
|
+
.reveal h4,
|
74
|
+
.reveal h5,
|
75
|
+
.reveal h6 {
|
76
|
+
-webkit-hyphens: auto;
|
77
|
+
-moz-hyphens: auto;
|
78
|
+
hyphens: auto;
|
79
|
+
|
80
|
+
word-wrap: break-word;
|
81
|
+
line-height: 1;
|
82
|
+
}
|
83
|
+
|
84
|
+
.reveal h1 { font-size: 3.77em; }
|
85
|
+
.reveal h2 { font-size: 2.11em; }
|
86
|
+
.reveal h3 { font-size: 1.55em; }
|
87
|
+
.reveal h4 { font-size: 1em; }
|
88
|
+
|
89
|
+
|
90
|
+
/*********************************************
|
91
|
+
* VIEW FRAGMENTS
|
92
|
+
*********************************************/
|
93
|
+
|
94
|
+
.reveal .slides section .fragment {
|
95
|
+
opacity: 0;
|
96
|
+
|
97
|
+
-webkit-transition: all .2s ease;
|
98
|
+
-moz-transition: all .2s ease;
|
99
|
+
-ms-transition: all .2s ease;
|
100
|
+
-o-transition: all .2s ease;
|
101
|
+
transition: all .2s ease;
|
102
|
+
}
|
103
|
+
.reveal .slides section .fragment.visible {
|
104
|
+
opacity: 1;
|
105
|
+
}
|
106
|
+
|
107
|
+
.reveal .slides section .fragment.grow {
|
108
|
+
opacity: 1;
|
109
|
+
}
|
110
|
+
.reveal .slides section .fragment.grow.visible {
|
111
|
+
-webkit-transform: scale( 1.3 );
|
112
|
+
-moz-transform: scale( 1.3 );
|
113
|
+
-ms-transform: scale( 1.3 );
|
114
|
+
-o-transform: scale( 1.3 );
|
115
|
+
transform: scale( 1.3 );
|
116
|
+
}
|
117
|
+
|
118
|
+
.reveal .slides section .fragment.shrink {
|
119
|
+
opacity: 1;
|
120
|
+
}
|
121
|
+
.reveal .slides section .fragment.shrink.visible {
|
122
|
+
-webkit-transform: scale( 0.7 );
|
123
|
+
-moz-transform: scale( 0.7 );
|
124
|
+
-ms-transform: scale( 0.7 );
|
125
|
+
-o-transform: scale( 0.7 );
|
126
|
+
transform: scale( 0.7 );
|
127
|
+
}
|
128
|
+
|
129
|
+
.reveal .slides section .fragment.zoom-in {
|
130
|
+
opacity: 0;
|
131
|
+
|
132
|
+
-webkit-transform: scale( 0.1 );
|
133
|
+
-moz-transform: scale( 0.1 );
|
134
|
+
-ms-transform: scale( 0.1 );
|
135
|
+
-o-transform: scale( 0.1 );
|
136
|
+
transform: scale( 0.1 );
|
137
|
+
}
|
138
|
+
|
139
|
+
.reveal .slides section .fragment.zoom-in.visible {
|
140
|
+
opacity: 1;
|
141
|
+
|
142
|
+
-webkit-transform: scale( 1 );
|
143
|
+
-moz-transform: scale( 1 );
|
144
|
+
-ms-transform: scale( 1 );
|
145
|
+
-o-transform: scale( 1 );
|
146
|
+
transform: scale( 1 );
|
147
|
+
}
|
148
|
+
|
149
|
+
.reveal .slides section .fragment.roll-in {
|
150
|
+
opacity: 0;
|
151
|
+
|
152
|
+
-webkit-transform: rotateX( 90deg );
|
153
|
+
-moz-transform: rotateX( 90deg );
|
154
|
+
-ms-transform: rotateX( 90deg );
|
155
|
+
-o-transform: rotateX( 90deg );
|
156
|
+
transform: rotateX( 90deg );
|
157
|
+
}
|
158
|
+
.reveal .slides section .fragment.roll-in.visible {
|
159
|
+
opacity: 1;
|
160
|
+
|
161
|
+
-webkit-transform: rotateX( 0 );
|
162
|
+
-moz-transform: rotateX( 0 );
|
163
|
+
-ms-transform: rotateX( 0 );
|
164
|
+
-o-transform: rotateX( 0 );
|
165
|
+
transform: rotateX( 0 );
|
166
|
+
}
|
167
|
+
|
168
|
+
.reveal .slides section .fragment.fade-out {
|
169
|
+
opacity: 1;
|
170
|
+
}
|
171
|
+
.reveal .slides section .fragment.fade-out.visible {
|
172
|
+
opacity: 0;
|
173
|
+
}
|
174
|
+
|
175
|
+
.reveal .slides section .fragment.semi-fade-out {
|
176
|
+
opacity: 1;
|
177
|
+
}
|
178
|
+
.reveal .slides section .fragment.semi-fade-out.visible {
|
179
|
+
opacity: 0.5;
|
180
|
+
}
|
181
|
+
|
182
|
+
.reveal .slides section .fragment.current-visible {
|
183
|
+
opacity:0;
|
184
|
+
}
|
185
|
+
|
186
|
+
.reveal .slides section .fragment.current-visible.current-fragment {
|
187
|
+
opacity:1;
|
188
|
+
}
|
189
|
+
|
190
|
+
.reveal .slides section .fragment.highlight-red,
|
191
|
+
.reveal .slides section .fragment.highlight-current-red,
|
192
|
+
.reveal .slides section .fragment.highlight-green,
|
193
|
+
.reveal .slides section .fragment.highlight-current-green,
|
194
|
+
.reveal .slides section .fragment.highlight-blue,
|
195
|
+
.reveal .slides section .fragment.highlight-current-blue {
|
196
|
+
opacity: 1;
|
197
|
+
}
|
198
|
+
.reveal .slides section .fragment.highlight-red.visible {
|
199
|
+
color: #ff2c2d
|
200
|
+
}
|
201
|
+
.reveal .slides section .fragment.highlight-green.visible {
|
202
|
+
color: #17ff2e;
|
203
|
+
}
|
204
|
+
.reveal .slides section .fragment.highlight-blue.visible {
|
205
|
+
color: #1b91ff;
|
206
|
+
}
|
207
|
+
|
208
|
+
.reveal .slides section .fragment.highlight-current-red.current-fragment {
|
209
|
+
color: #ff2c2d
|
210
|
+
}
|
211
|
+
.reveal .slides section .fragment.highlight-current-green.current-fragment {
|
212
|
+
color: #17ff2e;
|
213
|
+
}
|
214
|
+
.reveal .slides section .fragment.highlight-current-blue.current-fragment {
|
215
|
+
color: #1b91ff;
|
216
|
+
}
|
217
|
+
|
218
|
+
|
219
|
+
/*********************************************
|
220
|
+
* DEFAULT ELEMENT STYLES
|
221
|
+
*********************************************/
|
222
|
+
|
223
|
+
/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */
|
224
|
+
.reveal:after {
|
225
|
+
content: '';
|
226
|
+
font-style: italic;
|
227
|
+
}
|
228
|
+
|
229
|
+
.reveal iframe {
|
230
|
+
z-index: 1;
|
231
|
+
}
|
232
|
+
|
233
|
+
/* Ensure certain elements are never larger than the slide itself */
|
234
|
+
.reveal img,
|
235
|
+
.reveal video,
|
236
|
+
.reveal iframe {
|
237
|
+
max-width: 95%;
|
238
|
+
max-height: 95%;
|
239
|
+
}
|
240
|
+
|
241
|
+
/** Prevents layering issues in certain browser/transition combinations */
|
242
|
+
.reveal a {
|
243
|
+
position: relative;
|
244
|
+
}
|
245
|
+
|
246
|
+
.reveal strong,
|
247
|
+
.reveal b {
|
248
|
+
font-weight: bold;
|
249
|
+
}
|
250
|
+
|
251
|
+
.reveal em,
|
252
|
+
.reveal i {
|
253
|
+
font-style: italic;
|
254
|
+
}
|
255
|
+
|
256
|
+
.reveal ol,
|
257
|
+
.reveal ul {
|
258
|
+
display: inline-block;
|
259
|
+
|
260
|
+
text-align: left;
|
261
|
+
margin: 0 0 0 1em;
|
262
|
+
}
|
263
|
+
|
264
|
+
.reveal ol {
|
265
|
+
list-style-type: decimal;
|
266
|
+
}
|
267
|
+
|
268
|
+
.reveal ul {
|
269
|
+
list-style-type: disc;
|
270
|
+
}
|
271
|
+
|
272
|
+
.reveal ul ul {
|
273
|
+
list-style-type: square;
|
274
|
+
}
|
275
|
+
|
276
|
+
.reveal ul ul ul {
|
277
|
+
list-style-type: circle;
|
278
|
+
}
|
279
|
+
|
280
|
+
.reveal ul ul,
|
281
|
+
.reveal ul ol,
|
282
|
+
.reveal ol ol,
|
283
|
+
.reveal ol ul {
|
284
|
+
display: block;
|
285
|
+
margin-left: 40px;
|
286
|
+
}
|
287
|
+
|
288
|
+
.reveal p {
|
289
|
+
margin-bottom: 10px;
|
290
|
+
line-height: 1.2em;
|
291
|
+
}
|
292
|
+
|
293
|
+
.reveal q,
|
294
|
+
.reveal blockquote {
|
295
|
+
quotes: none;
|
296
|
+
}
|
297
|
+
|
298
|
+
.reveal blockquote {
|
299
|
+
display: block;
|
300
|
+
position: relative;
|
301
|
+
width: 70%;
|
302
|
+
margin: 5px auto;
|
303
|
+
padding: 5px;
|
304
|
+
|
305
|
+
font-style: italic;
|
306
|
+
background: rgba(255, 255, 255, 0.05);
|
307
|
+
box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
|
308
|
+
}
|
309
|
+
.reveal blockquote p:first-child,
|
310
|
+
.reveal blockquote p:last-child {
|
311
|
+
display: inline-block;
|
312
|
+
}
|
313
|
+
|
314
|
+
.reveal q {
|
315
|
+
font-style: italic;
|
316
|
+
}
|
317
|
+
|
318
|
+
.reveal pre {
|
319
|
+
display: block;
|
320
|
+
position: relative;
|
321
|
+
width: 90%;
|
322
|
+
margin: 15px auto;
|
323
|
+
|
324
|
+
text-align: left;
|
325
|
+
font-size: 0.55em;
|
326
|
+
font-family: monospace;
|
327
|
+
line-height: 1.2em;
|
328
|
+
|
329
|
+
word-wrap: break-word;
|
330
|
+
|
331
|
+
box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
|
332
|
+
}
|
333
|
+
.reveal code {
|
334
|
+
font-family: monospace;
|
335
|
+
}
|
336
|
+
.reveal pre code {
|
337
|
+
padding: 5px;
|
338
|
+
overflow: auto;
|
339
|
+
max-height: 400px;
|
340
|
+
word-wrap: normal;
|
341
|
+
}
|
342
|
+
.reveal pre.stretch code {
|
343
|
+
height: 100%;
|
344
|
+
max-height: 100%;
|
345
|
+
|
346
|
+
-webkit-box-sizing: border-box;
|
347
|
+
-moz-box-sizing: border-box;
|
348
|
+
box-sizing: border-box;
|
349
|
+
}
|
350
|
+
|
351
|
+
.reveal table th,
|
352
|
+
.reveal table td {
|
353
|
+
text-align: left;
|
354
|
+
padding-right: .3em;
|
355
|
+
}
|
356
|
+
|
357
|
+
.reveal table th {
|
358
|
+
font-weight: bold;
|
359
|
+
}
|
360
|
+
|
361
|
+
.reveal sup {
|
362
|
+
vertical-align: super;
|
363
|
+
}
|
364
|
+
.reveal sub {
|
365
|
+
vertical-align: sub;
|
366
|
+
}
|
367
|
+
|
368
|
+
.reveal small {
|
369
|
+
display: inline-block;
|
370
|
+
font-size: 0.6em;
|
371
|
+
line-height: 1.2em;
|
372
|
+
vertical-align: top;
|
373
|
+
}
|
374
|
+
|
375
|
+
.reveal small * {
|
376
|
+
vertical-align: top;
|
377
|
+
}
|
378
|
+
|
379
|
+
.reveal .stretch {
|
380
|
+
max-width: none;
|
381
|
+
max-height: none;
|
382
|
+
}
|
383
|
+
|
384
|
+
|
385
|
+
/*********************************************
|
386
|
+
* CONTROLS
|
387
|
+
*********************************************/
|
388
|
+
|
389
|
+
.reveal .controls {
|
390
|
+
display: none;
|
391
|
+
position: fixed;
|
392
|
+
width: 110px;
|
393
|
+
height: 110px;
|
394
|
+
z-index: 30;
|
395
|
+
right: 10px;
|
396
|
+
bottom: 10px;
|
397
|
+
}
|
398
|
+
|
399
|
+
.reveal .controls div {
|
400
|
+
position: absolute;
|
401
|
+
opacity: 0.05;
|
402
|
+
width: 0;
|
403
|
+
height: 0;
|
404
|
+
border: 12px solid transparent;
|
405
|
+
|
406
|
+
-moz-transform: scale(.9999);
|
407
|
+
|
408
|
+
-webkit-transition: all 0.2s ease;
|
409
|
+
-moz-transition: all 0.2s ease;
|
410
|
+
-ms-transition: all 0.2s ease;
|
411
|
+
-o-transition: all 0.2s ease;
|
412
|
+
transition: all 0.2s ease;
|
413
|
+
}
|
414
|
+
|
415
|
+
.reveal .controls div.enabled {
|
416
|
+
opacity: 0.7;
|
417
|
+
cursor: pointer;
|
418
|
+
}
|
419
|
+
|
420
|
+
.reveal .controls div.enabled:active {
|
421
|
+
margin-top: 1px;
|
422
|
+
}
|
423
|
+
|
424
|
+
.reveal .controls div.navigate-left {
|
425
|
+
top: 42px;
|
426
|
+
|
427
|
+
border-right-width: 22px;
|
428
|
+
border-right-color: #eee;
|
429
|
+
}
|
430
|
+
.reveal .controls div.navigate-left.fragmented {
|
431
|
+
opacity: 0.3;
|
432
|
+
}
|
433
|
+
|
434
|
+
.reveal .controls div.navigate-right {
|
435
|
+
left: 74px;
|
436
|
+
top: 42px;
|
437
|
+
|
438
|
+
border-left-width: 22px;
|
439
|
+
border-left-color: #eee;
|
440
|
+
}
|
441
|
+
.reveal .controls div.navigate-right.fragmented {
|
442
|
+
opacity: 0.3;
|
443
|
+
}
|
444
|
+
|
445
|
+
.reveal .controls div.navigate-up {
|
446
|
+
left: 42px;
|
447
|
+
|
448
|
+
border-bottom-width: 22px;
|
449
|
+
border-bottom-color: #eee;
|
450
|
+
}
|
451
|
+
.reveal .controls div.navigate-up.fragmented {
|
452
|
+
opacity: 0.3;
|
453
|
+
}
|
454
|
+
|
455
|
+
.reveal .controls div.navigate-down {
|
456
|
+
left: 42px;
|
457
|
+
top: 74px;
|
458
|
+
|
459
|
+
border-top-width: 22px;
|
460
|
+
border-top-color: #eee;
|
461
|
+
}
|
462
|
+
.reveal .controls div.navigate-down.fragmented {
|
463
|
+
opacity: 0.3;
|
464
|
+
}
|
465
|
+
|
466
|
+
|
467
|
+
/*********************************************
|
468
|
+
* PROGRESS BAR
|
469
|
+
*********************************************/
|
470
|
+
|
471
|
+
.reveal .progress {
|
472
|
+
position: fixed;
|
473
|
+
display: none;
|
474
|
+
height: 3px;
|
475
|
+
width: 100%;
|
476
|
+
bottom: 0;
|
477
|
+
left: 0;
|
478
|
+
z-index: 10;
|
479
|
+
}
|
480
|
+
.reveal .progress:after {
|
481
|
+
content: '';
|
482
|
+
display: 'block';
|
483
|
+
position: absolute;
|
484
|
+
height: 20px;
|
485
|
+
width: 100%;
|
486
|
+
top: -20px;
|
487
|
+
}
|
488
|
+
.reveal .progress span {
|
489
|
+
display: block;
|
490
|
+
height: 100%;
|
491
|
+
width: 0px;
|
492
|
+
|
493
|
+
-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
494
|
+
-moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
495
|
+
-ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
496
|
+
-o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
497
|
+
transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
498
|
+
}
|
499
|
+
|
500
|
+
/*********************************************
|
501
|
+
* SLIDE NUMBER
|
502
|
+
*********************************************/
|
503
|
+
|
504
|
+
.reveal .slide-number {
|
505
|
+
position: fixed;
|
506
|
+
display: block;
|
507
|
+
right: 15px;
|
508
|
+
bottom: 15px;
|
509
|
+
opacity: 0.5;
|
510
|
+
z-index: 31;
|
511
|
+
font-size: 12px;
|
512
|
+
}
|
513
|
+
|
514
|
+
/*********************************************
|
515
|
+
* SLIDES
|
516
|
+
*********************************************/
|
517
|
+
|
518
|
+
.reveal {
|
519
|
+
position: relative;
|
520
|
+
width: 100%;
|
521
|
+
height: 100%;
|
522
|
+
|
523
|
+
-ms-touch-action: none;
|
524
|
+
}
|
525
|
+
|
526
|
+
.reveal .slides {
|
527
|
+
position: absolute;
|
528
|
+
width: 100%;
|
529
|
+
height: 100%;
|
530
|
+
left: 50%;
|
531
|
+
top: 50%;
|
532
|
+
|
533
|
+
overflow: visible;
|
534
|
+
z-index: 1;
|
535
|
+
text-align: center;
|
536
|
+
|
537
|
+
-webkit-transition: -webkit-perspective .4s ease;
|
538
|
+
-moz-transition: -moz-perspective .4s ease;
|
539
|
+
-ms-transition: -ms-perspective .4s ease;
|
540
|
+
-o-transition: -o-perspective .4s ease;
|
541
|
+
transition: perspective .4s ease;
|
542
|
+
|
543
|
+
-webkit-perspective: 600px;
|
544
|
+
-moz-perspective: 600px;
|
545
|
+
-ms-perspective: 600px;
|
546
|
+
perspective: 600px;
|
547
|
+
|
548
|
+
-webkit-perspective-origin: 0px -100px;
|
549
|
+
-moz-perspective-origin: 0px -100px;
|
550
|
+
-ms-perspective-origin: 0px -100px;
|
551
|
+
perspective-origin: 0px -100px;
|
552
|
+
}
|
553
|
+
|
554
|
+
.reveal .slides>section {
|
555
|
+
-ms-perspective: 600px;
|
556
|
+
}
|
557
|
+
|
558
|
+
.reveal .slides>section,
|
559
|
+
.reveal .slides>section>section {
|
560
|
+
display: none;
|
561
|
+
position: absolute;
|
562
|
+
width: 100%;
|
563
|
+
padding: 20px 0px;
|
564
|
+
|
565
|
+
z-index: 10;
|
566
|
+
line-height: 1.2em;
|
567
|
+
font-weight: inherit;
|
568
|
+
|
569
|
+
-webkit-transform-style: preserve-3d;
|
570
|
+
-moz-transform-style: preserve-3d;
|
571
|
+
-ms-transform-style: preserve-3d;
|
572
|
+
transform-style: preserve-3d;
|
573
|
+
|
574
|
+
-webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
575
|
+
-webkit-transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
576
|
+
visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
577
|
+
opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
578
|
+
-moz-transition: -moz-transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
579
|
+
-moz-transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
580
|
+
visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
581
|
+
opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
582
|
+
-ms-transition: -ms-transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
583
|
+
-ms-transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
584
|
+
visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
585
|
+
opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
586
|
+
-o-transition: -o-transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
587
|
+
-o-transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
588
|
+
visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
589
|
+
opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
590
|
+
transition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
591
|
+
transform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
592
|
+
visibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),
|
593
|
+
opacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
594
|
+
}
|
595
|
+
|
596
|
+
/* Global transition speed settings */
|
597
|
+
.reveal[data-transition-speed="fast"] .slides section {
|
598
|
+
-webkit-transition-duration: 400ms;
|
599
|
+
-moz-transition-duration: 400ms;
|
600
|
+
-ms-transition-duration: 400ms;
|
601
|
+
transition-duration: 400ms;
|
602
|
+
}
|
603
|
+
.reveal[data-transition-speed="slow"] .slides section {
|
604
|
+
-webkit-transition-duration: 1200ms;
|
605
|
+
-moz-transition-duration: 1200ms;
|
606
|
+
-ms-transition-duration: 1200ms;
|
607
|
+
transition-duration: 1200ms;
|
608
|
+
}
|
609
|
+
|
610
|
+
/* Slide-specific transition speed overrides */
|
611
|
+
.reveal .slides section[data-transition-speed="fast"] {
|
612
|
+
-webkit-transition-duration: 400ms;
|
613
|
+
-moz-transition-duration: 400ms;
|
614
|
+
-ms-transition-duration: 400ms;
|
615
|
+
transition-duration: 400ms;
|
616
|
+
}
|
617
|
+
.reveal .slides section[data-transition-speed="slow"] {
|
618
|
+
-webkit-transition-duration: 1200ms;
|
619
|
+
-moz-transition-duration: 1200ms;
|
620
|
+
-ms-transition-duration: 1200ms;
|
621
|
+
transition-duration: 1200ms;
|
622
|
+
}
|
623
|
+
|
624
|
+
.reveal .slides>section {
|
625
|
+
left: -50%;
|
626
|
+
top: -50%;
|
627
|
+
}
|
628
|
+
|
629
|
+
.reveal .slides>section.stack {
|
630
|
+
padding-top: 0;
|
631
|
+
padding-bottom: 0;
|
632
|
+
}
|
633
|
+
|
634
|
+
.reveal .slides>section.present,
|
635
|
+
.reveal .slides>section>section.present {
|
636
|
+
display: block;
|
637
|
+
z-index: 11;
|
638
|
+
opacity: 1;
|
639
|
+
}
|
640
|
+
|
641
|
+
.reveal.center,
|
642
|
+
.reveal.center .slides,
|
643
|
+
.reveal.center .slides section {
|
644
|
+
min-height: auto !important;
|
645
|
+
}
|
646
|
+
|
647
|
+
/* Don't allow interaction with invisible slides */
|
648
|
+
.reveal .slides>section.future,
|
649
|
+
.reveal .slides>section>section.future,
|
650
|
+
.reveal .slides>section.past,
|
651
|
+
.reveal .slides>section>section.past {
|
652
|
+
pointer-events: none;
|
653
|
+
}
|
654
|
+
|
655
|
+
.reveal.overview .slides>section,
|
656
|
+
.reveal.overview .slides>section>section {
|
657
|
+
pointer-events: auto;
|
658
|
+
}
|
659
|
+
|
660
|
+
|
661
|
+
|
662
|
+
/*********************************************
|
663
|
+
* DEFAULT TRANSITION
|
664
|
+
*********************************************/
|
665
|
+
|
666
|
+
.reveal .slides>section[data-transition=default].past,
|
667
|
+
.reveal .slides>section.past {
|
668
|
+
display: block;
|
669
|
+
opacity: 0;
|
670
|
+
|
671
|
+
-webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
672
|
+
-moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
673
|
+
-ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
674
|
+
transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
675
|
+
}
|
676
|
+
.reveal .slides>section[data-transition=default].future,
|
677
|
+
.reveal .slides>section.future {
|
678
|
+
display: block;
|
679
|
+
opacity: 0;
|
680
|
+
|
681
|
+
-webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
682
|
+
-moz-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
683
|
+
-ms-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
684
|
+
transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
685
|
+
}
|
686
|
+
|
687
|
+
.reveal .slides>section>section[data-transition=default].past,
|
688
|
+
.reveal .slides>section>section.past {
|
689
|
+
display: block;
|
690
|
+
opacity: 0;
|
691
|
+
|
692
|
+
-webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
|
693
|
+
-moz-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
|
694
|
+
-ms-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
|
695
|
+
transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);
|
696
|
+
}
|
697
|
+
.reveal .slides>section>section[data-transition=default].future,
|
698
|
+
.reveal .slides>section>section.future {
|
699
|
+
display: block;
|
700
|
+
opacity: 0;
|
701
|
+
|
702
|
+
-webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
|
703
|
+
-moz-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
|
704
|
+
-ms-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
|
705
|
+
transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);
|
706
|
+
}
|
707
|
+
|
708
|
+
|
709
|
+
/*********************************************
|
710
|
+
* CONCAVE TRANSITION
|
711
|
+
*********************************************/
|
712
|
+
|
713
|
+
.reveal .slides>section[data-transition=concave].past,
|
714
|
+
.reveal.concave .slides>section.past {
|
715
|
+
-webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
716
|
+
-moz-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
717
|
+
-ms-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
718
|
+
transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
719
|
+
}
|
720
|
+
.reveal .slides>section[data-transition=concave].future,
|
721
|
+
.reveal.concave .slides>section.future {
|
722
|
+
-webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
723
|
+
-moz-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
724
|
+
-ms-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
725
|
+
transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
726
|
+
}
|
727
|
+
|
728
|
+
.reveal .slides>section>section[data-transition=concave].past,
|
729
|
+
.reveal.concave .slides>section>section.past {
|
730
|
+
-webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
|
731
|
+
-moz-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
|
732
|
+
-ms-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
|
733
|
+
transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
|
734
|
+
}
|
735
|
+
.reveal .slides>section>section[data-transition=concave].future,
|
736
|
+
.reveal.concave .slides>section>section.future {
|
737
|
+
-webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
|
738
|
+
-moz-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
|
739
|
+
-ms-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
|
740
|
+
transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
|
741
|
+
}
|
742
|
+
|
743
|
+
|
744
|
+
/*********************************************
|
745
|
+
* ZOOM TRANSITION
|
746
|
+
*********************************************/
|
747
|
+
|
748
|
+
.reveal .slides>section[data-transition=zoom],
|
749
|
+
.reveal.zoom .slides>section {
|
750
|
+
-webkit-transition-timing-function: ease;
|
751
|
+
-moz-transition-timing-function: ease;
|
752
|
+
-ms-transition-timing-function: ease;
|
753
|
+
-o-transition-timing-function: ease;
|
754
|
+
transition-timing-function: ease;
|
755
|
+
}
|
756
|
+
|
757
|
+
.reveal .slides>section[data-transition=zoom].past,
|
758
|
+
.reveal.zoom .slides>section.past {
|
759
|
+
opacity: 0;
|
760
|
+
visibility: hidden;
|
761
|
+
|
762
|
+
-webkit-transform: scale(16);
|
763
|
+
-moz-transform: scale(16);
|
764
|
+
-ms-transform: scale(16);
|
765
|
+
-o-transform: scale(16);
|
766
|
+
transform: scale(16);
|
767
|
+
}
|
768
|
+
.reveal .slides>section[data-transition=zoom].future,
|
769
|
+
.reveal.zoom .slides>section.future {
|
770
|
+
opacity: 0;
|
771
|
+
visibility: hidden;
|
772
|
+
|
773
|
+
-webkit-transform: scale(0.2);
|
774
|
+
-moz-transform: scale(0.2);
|
775
|
+
-ms-transform: scale(0.2);
|
776
|
+
-o-transform: scale(0.2);
|
777
|
+
transform: scale(0.2);
|
778
|
+
}
|
779
|
+
|
780
|
+
.reveal .slides>section>section[data-transition=zoom].past,
|
781
|
+
.reveal.zoom .slides>section>section.past {
|
782
|
+
-webkit-transform: translate(0, -150%);
|
783
|
+
-moz-transform: translate(0, -150%);
|
784
|
+
-ms-transform: translate(0, -150%);
|
785
|
+
-o-transform: translate(0, -150%);
|
786
|
+
transform: translate(0, -150%);
|
787
|
+
}
|
788
|
+
.reveal .slides>section>section[data-transition=zoom].future,
|
789
|
+
.reveal.zoom .slides>section>section.future {
|
790
|
+
-webkit-transform: translate(0, 150%);
|
791
|
+
-moz-transform: translate(0, 150%);
|
792
|
+
-ms-transform: translate(0, 150%);
|
793
|
+
-o-transform: translate(0, 150%);
|
794
|
+
transform: translate(0, 150%);
|
795
|
+
}
|
796
|
+
|
797
|
+
|
798
|
+
/*********************************************
|
799
|
+
* LINEAR TRANSITION
|
800
|
+
*********************************************/
|
801
|
+
|
802
|
+
.reveal.linear section {
|
803
|
+
-webkit-backface-visibility: hidden;
|
804
|
+
-moz-backface-visibility: hidden;
|
805
|
+
-ms-backface-visibility: hidden;
|
806
|
+
backface-visibility: hidden;
|
807
|
+
}
|
808
|
+
|
809
|
+
.reveal .slides>section[data-transition=linear].past,
|
810
|
+
.reveal.linear .slides>section.past {
|
811
|
+
-webkit-transform: translate(-150%, 0);
|
812
|
+
-moz-transform: translate(-150%, 0);
|
813
|
+
-ms-transform: translate(-150%, 0);
|
814
|
+
-o-transform: translate(-150%, 0);
|
815
|
+
transform: translate(-150%, 0);
|
816
|
+
}
|
817
|
+
.reveal .slides>section[data-transition=linear].future,
|
818
|
+
.reveal.linear .slides>section.future {
|
819
|
+
-webkit-transform: translate(150%, 0);
|
820
|
+
-moz-transform: translate(150%, 0);
|
821
|
+
-ms-transform: translate(150%, 0);
|
822
|
+
-o-transform: translate(150%, 0);
|
823
|
+
transform: translate(150%, 0);
|
824
|
+
}
|
825
|
+
|
826
|
+
.reveal .slides>section>section[data-transition=linear].past,
|
827
|
+
.reveal.linear .slides>section>section.past {
|
828
|
+
-webkit-transform: translate(0, -150%);
|
829
|
+
-moz-transform: translate(0, -150%);
|
830
|
+
-ms-transform: translate(0, -150%);
|
831
|
+
-o-transform: translate(0, -150%);
|
832
|
+
transform: translate(0, -150%);
|
833
|
+
}
|
834
|
+
.reveal .slides>section>section[data-transition=linear].future,
|
835
|
+
.reveal.linear .slides>section>section.future {
|
836
|
+
-webkit-transform: translate(0, 150%);
|
837
|
+
-moz-transform: translate(0, 150%);
|
838
|
+
-ms-transform: translate(0, 150%);
|
839
|
+
-o-transform: translate(0, 150%);
|
840
|
+
transform: translate(0, 150%);
|
841
|
+
}
|
842
|
+
|
843
|
+
|
844
|
+
/*********************************************
|
845
|
+
* CUBE TRANSITION
|
846
|
+
*********************************************/
|
847
|
+
|
848
|
+
.reveal.cube .slides {
|
849
|
+
-webkit-perspective: 1300px;
|
850
|
+
-moz-perspective: 1300px;
|
851
|
+
-ms-perspective: 1300px;
|
852
|
+
perspective: 1300px;
|
853
|
+
}
|
854
|
+
|
855
|
+
.reveal.cube .slides section {
|
856
|
+
padding: 30px;
|
857
|
+
min-height: 700px;
|
858
|
+
|
859
|
+
-webkit-backface-visibility: hidden;
|
860
|
+
-moz-backface-visibility: hidden;
|
861
|
+
-ms-backface-visibility: hidden;
|
862
|
+
backface-visibility: hidden;
|
863
|
+
|
864
|
+
-webkit-box-sizing: border-box;
|
865
|
+
-moz-box-sizing: border-box;
|
866
|
+
box-sizing: border-box;
|
867
|
+
}
|
868
|
+
.reveal.center.cube .slides section {
|
869
|
+
min-height: auto;
|
870
|
+
}
|
871
|
+
.reveal.cube .slides section:not(.stack):before {
|
872
|
+
content: '';
|
873
|
+
position: absolute;
|
874
|
+
display: block;
|
875
|
+
width: 100%;
|
876
|
+
height: 100%;
|
877
|
+
left: 0;
|
878
|
+
top: 0;
|
879
|
+
background: rgba(0,0,0,0.1);
|
880
|
+
border-radius: 4px;
|
881
|
+
|
882
|
+
-webkit-transform: translateZ( -20px );
|
883
|
+
-moz-transform: translateZ( -20px );
|
884
|
+
-ms-transform: translateZ( -20px );
|
885
|
+
-o-transform: translateZ( -20px );
|
886
|
+
transform: translateZ( -20px );
|
887
|
+
}
|
888
|
+
.reveal.cube .slides section:not(.stack):after {
|
889
|
+
content: '';
|
890
|
+
position: absolute;
|
891
|
+
display: block;
|
892
|
+
width: 90%;
|
893
|
+
height: 30px;
|
894
|
+
left: 5%;
|
895
|
+
bottom: 0;
|
896
|
+
background: none;
|
897
|
+
z-index: 1;
|
898
|
+
|
899
|
+
border-radius: 4px;
|
900
|
+
box-shadow: 0px 95px 25px rgba(0,0,0,0.2);
|
901
|
+
|
902
|
+
-webkit-transform: translateZ(-90px) rotateX( 65deg );
|
903
|
+
-moz-transform: translateZ(-90px) rotateX( 65deg );
|
904
|
+
-ms-transform: translateZ(-90px) rotateX( 65deg );
|
905
|
+
-o-transform: translateZ(-90px) rotateX( 65deg );
|
906
|
+
transform: translateZ(-90px) rotateX( 65deg );
|
907
|
+
}
|
908
|
+
|
909
|
+
.reveal.cube .slides>section.stack {
|
910
|
+
padding: 0;
|
911
|
+
background: none;
|
912
|
+
}
|
913
|
+
|
914
|
+
.reveal.cube .slides>section.past {
|
915
|
+
-webkit-transform-origin: 100% 0%;
|
916
|
+
-moz-transform-origin: 100% 0%;
|
917
|
+
-ms-transform-origin: 100% 0%;
|
918
|
+
transform-origin: 100% 0%;
|
919
|
+
|
920
|
+
-webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
|
921
|
+
-moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
|
922
|
+
-ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
|
923
|
+
transform: translate3d(-100%, 0, 0) rotateY(-90deg);
|
924
|
+
}
|
925
|
+
|
926
|
+
.reveal.cube .slides>section.future {
|
927
|
+
-webkit-transform-origin: 0% 0%;
|
928
|
+
-moz-transform-origin: 0% 0%;
|
929
|
+
-ms-transform-origin: 0% 0%;
|
930
|
+
transform-origin: 0% 0%;
|
931
|
+
|
932
|
+
-webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);
|
933
|
+
-moz-transform: translate3d(100%, 0, 0) rotateY(90deg);
|
934
|
+
-ms-transform: translate3d(100%, 0, 0) rotateY(90deg);
|
935
|
+
transform: translate3d(100%, 0, 0) rotateY(90deg);
|
936
|
+
}
|
937
|
+
|
938
|
+
.reveal.cube .slides>section>section.past {
|
939
|
+
-webkit-transform-origin: 0% 100%;
|
940
|
+
-moz-transform-origin: 0% 100%;
|
941
|
+
-ms-transform-origin: 0% 100%;
|
942
|
+
transform-origin: 0% 100%;
|
943
|
+
|
944
|
+
-webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);
|
945
|
+
-moz-transform: translate3d(0, -100%, 0) rotateX(90deg);
|
946
|
+
-ms-transform: translate3d(0, -100%, 0) rotateX(90deg);
|
947
|
+
transform: translate3d(0, -100%, 0) rotateX(90deg);
|
948
|
+
}
|
949
|
+
|
950
|
+
.reveal.cube .slides>section>section.future {
|
951
|
+
-webkit-transform-origin: 0% 0%;
|
952
|
+
-moz-transform-origin: 0% 0%;
|
953
|
+
-ms-transform-origin: 0% 0%;
|
954
|
+
transform-origin: 0% 0%;
|
955
|
+
|
956
|
+
-webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);
|
957
|
+
-moz-transform: translate3d(0, 100%, 0) rotateX(-90deg);
|
958
|
+
-ms-transform: translate3d(0, 100%, 0) rotateX(-90deg);
|
959
|
+
transform: translate3d(0, 100%, 0) rotateX(-90deg);
|
960
|
+
}
|
961
|
+
|
962
|
+
|
963
|
+
/*********************************************
|
964
|
+
* PAGE TRANSITION
|
965
|
+
*********************************************/
|
966
|
+
|
967
|
+
.reveal.page .slides {
|
968
|
+
-webkit-perspective-origin: 0% 50%;
|
969
|
+
-moz-perspective-origin: 0% 50%;
|
970
|
+
-ms-perspective-origin: 0% 50%;
|
971
|
+
perspective-origin: 0% 50%;
|
972
|
+
|
973
|
+
-webkit-perspective: 3000px;
|
974
|
+
-moz-perspective: 3000px;
|
975
|
+
-ms-perspective: 3000px;
|
976
|
+
perspective: 3000px;
|
977
|
+
}
|
978
|
+
|
979
|
+
.reveal.page .slides section {
|
980
|
+
padding: 30px;
|
981
|
+
min-height: 700px;
|
982
|
+
|
983
|
+
-webkit-box-sizing: border-box;
|
984
|
+
-moz-box-sizing: border-box;
|
985
|
+
box-sizing: border-box;
|
986
|
+
}
|
987
|
+
.reveal.page .slides section.past {
|
988
|
+
z-index: 12;
|
989
|
+
}
|
990
|
+
.reveal.page .slides section:not(.stack):before {
|
991
|
+
content: '';
|
992
|
+
position: absolute;
|
993
|
+
display: block;
|
994
|
+
width: 100%;
|
995
|
+
height: 100%;
|
996
|
+
left: 0;
|
997
|
+
top: 0;
|
998
|
+
background: rgba(0,0,0,0.1);
|
999
|
+
|
1000
|
+
-webkit-transform: translateZ( -20px );
|
1001
|
+
-moz-transform: translateZ( -20px );
|
1002
|
+
-ms-transform: translateZ( -20px );
|
1003
|
+
-o-transform: translateZ( -20px );
|
1004
|
+
transform: translateZ( -20px );
|
1005
|
+
}
|
1006
|
+
.reveal.page .slides section:not(.stack):after {
|
1007
|
+
content: '';
|
1008
|
+
position: absolute;
|
1009
|
+
display: block;
|
1010
|
+
width: 90%;
|
1011
|
+
height: 30px;
|
1012
|
+
left: 5%;
|
1013
|
+
bottom: 0;
|
1014
|
+
background: none;
|
1015
|
+
z-index: 1;
|
1016
|
+
|
1017
|
+
border-radius: 4px;
|
1018
|
+
box-shadow: 0px 95px 25px rgba(0,0,0,0.2);
|
1019
|
+
|
1020
|
+
-webkit-transform: translateZ(-90px) rotateX( 65deg );
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
.reveal.page .slides>section.stack {
|
1024
|
+
padding: 0;
|
1025
|
+
background: none;
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
.reveal.page .slides>section.past {
|
1029
|
+
-webkit-transform-origin: 0% 0%;
|
1030
|
+
-moz-transform-origin: 0% 0%;
|
1031
|
+
-ms-transform-origin: 0% 0%;
|
1032
|
+
transform-origin: 0% 0%;
|
1033
|
+
|
1034
|
+
-webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
|
1035
|
+
-moz-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
|
1036
|
+
-ms-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
|
1037
|
+
transform: translate3d(-40%, 0, 0) rotateY(-80deg);
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
.reveal.page .slides>section.future {
|
1041
|
+
-webkit-transform-origin: 100% 0%;
|
1042
|
+
-moz-transform-origin: 100% 0%;
|
1043
|
+
-ms-transform-origin: 100% 0%;
|
1044
|
+
transform-origin: 100% 0%;
|
1045
|
+
|
1046
|
+
-webkit-transform: translate3d(0, 0, 0);
|
1047
|
+
-moz-transform: translate3d(0, 0, 0);
|
1048
|
+
-ms-transform: translate3d(0, 0, 0);
|
1049
|
+
transform: translate3d(0, 0, 0);
|
1050
|
+
}
|
1051
|
+
|
1052
|
+
.reveal.page .slides>section>section.past {
|
1053
|
+
-webkit-transform-origin: 0% 0%;
|
1054
|
+
-moz-transform-origin: 0% 0%;
|
1055
|
+
-ms-transform-origin: 0% 0%;
|
1056
|
+
transform-origin: 0% 0%;
|
1057
|
+
|
1058
|
+
-webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);
|
1059
|
+
-moz-transform: translate3d(0, -40%, 0) rotateX(80deg);
|
1060
|
+
-ms-transform: translate3d(0, -40%, 0) rotateX(80deg);
|
1061
|
+
transform: translate3d(0, -40%, 0) rotateX(80deg);
|
1062
|
+
}
|
1063
|
+
|
1064
|
+
.reveal.page .slides>section>section.future {
|
1065
|
+
-webkit-transform-origin: 0% 100%;
|
1066
|
+
-moz-transform-origin: 0% 100%;
|
1067
|
+
-ms-transform-origin: 0% 100%;
|
1068
|
+
transform-origin: 0% 100%;
|
1069
|
+
|
1070
|
+
-webkit-transform: translate3d(0, 0, 0);
|
1071
|
+
-moz-transform: translate3d(0, 0, 0);
|
1072
|
+
-ms-transform: translate3d(0, 0, 0);
|
1073
|
+
transform: translate3d(0, 0, 0);
|
1074
|
+
}
|
1075
|
+
|
1076
|
+
|
1077
|
+
/*********************************************
|
1078
|
+
* FADE TRANSITION
|
1079
|
+
*********************************************/
|
1080
|
+
|
1081
|
+
.reveal .slides section[data-transition=fade],
|
1082
|
+
.reveal.fade .slides section,
|
1083
|
+
.reveal.fade .slides>section>section {
|
1084
|
+
-webkit-transform: none;
|
1085
|
+
-moz-transform: none;
|
1086
|
+
-ms-transform: none;
|
1087
|
+
-o-transform: none;
|
1088
|
+
transform: none;
|
1089
|
+
|
1090
|
+
-webkit-transition: opacity 0.5s;
|
1091
|
+
-moz-transition: opacity 0.5s;
|
1092
|
+
-ms-transition: opacity 0.5s;
|
1093
|
+
-o-transition: opacity 0.5s;
|
1094
|
+
transition: opacity 0.5s;
|
1095
|
+
}
|
1096
|
+
|
1097
|
+
|
1098
|
+
.reveal.fade.overview .slides section,
|
1099
|
+
.reveal.fade.overview .slides>section>section,
|
1100
|
+
.reveal.fade.overview-deactivating .slides section,
|
1101
|
+
.reveal.fade.overview-deactivating .slides>section>section {
|
1102
|
+
-webkit-transition: none;
|
1103
|
+
-moz-transition: none;
|
1104
|
+
-ms-transition: none;
|
1105
|
+
-o-transition: none;
|
1106
|
+
transition: none;
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
|
1110
|
+
/*********************************************
|
1111
|
+
* NO TRANSITION
|
1112
|
+
*********************************************/
|
1113
|
+
|
1114
|
+
.reveal .slides section[data-transition=none],
|
1115
|
+
.reveal.none .slides section {
|
1116
|
+
-webkit-transform: none;
|
1117
|
+
-moz-transform: none;
|
1118
|
+
-ms-transform: none;
|
1119
|
+
-o-transform: none;
|
1120
|
+
transform: none;
|
1121
|
+
|
1122
|
+
-webkit-transition: none;
|
1123
|
+
-moz-transition: none;
|
1124
|
+
-ms-transition: none;
|
1125
|
+
-o-transition: none;
|
1126
|
+
transition: none;
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
|
1130
|
+
/*********************************************
|
1131
|
+
* OVERVIEW
|
1132
|
+
*********************************************/
|
1133
|
+
|
1134
|
+
.reveal.overview .slides {
|
1135
|
+
-webkit-perspective-origin: 0% 0%;
|
1136
|
+
-moz-perspective-origin: 0% 0%;
|
1137
|
+
-ms-perspective-origin: 0% 0%;
|
1138
|
+
perspective-origin: 0% 0%;
|
1139
|
+
|
1140
|
+
-webkit-perspective: 700px;
|
1141
|
+
-moz-perspective: 700px;
|
1142
|
+
-ms-perspective: 700px;
|
1143
|
+
perspective: 700px;
|
1144
|
+
}
|
1145
|
+
|
1146
|
+
.reveal.overview .slides section {
|
1147
|
+
height: 600px;
|
1148
|
+
top: -300px !important;
|
1149
|
+
overflow: hidden;
|
1150
|
+
opacity: 1 !important;
|
1151
|
+
visibility: visible !important;
|
1152
|
+
cursor: pointer;
|
1153
|
+
background: rgba(0,0,0,0.1);
|
1154
|
+
}
|
1155
|
+
.reveal.overview .slides section .fragment {
|
1156
|
+
opacity: 1;
|
1157
|
+
}
|
1158
|
+
.reveal.overview .slides section:after,
|
1159
|
+
.reveal.overview .slides section:before {
|
1160
|
+
display: none !important;
|
1161
|
+
}
|
1162
|
+
.reveal.overview .slides section>section {
|
1163
|
+
opacity: 1;
|
1164
|
+
cursor: pointer;
|
1165
|
+
}
|
1166
|
+
.reveal.overview .slides section:hover {
|
1167
|
+
background: rgba(0,0,0,0.3);
|
1168
|
+
}
|
1169
|
+
.reveal.overview .slides section.present {
|
1170
|
+
background: rgba(0,0,0,0.3);
|
1171
|
+
}
|
1172
|
+
.reveal.overview .slides>section.stack {
|
1173
|
+
padding: 0;
|
1174
|
+
top: 0 !important;
|
1175
|
+
background: none;
|
1176
|
+
overflow: visible;
|
1177
|
+
}
|
1178
|
+
|
1179
|
+
|
1180
|
+
/*********************************************
|
1181
|
+
* PAUSED MODE
|
1182
|
+
*********************************************/
|
1183
|
+
|
1184
|
+
.reveal .pause-overlay {
|
1185
|
+
position: absolute;
|
1186
|
+
top: 0;
|
1187
|
+
left: 0;
|
1188
|
+
width: 100%;
|
1189
|
+
height: 100%;
|
1190
|
+
background: black;
|
1191
|
+
visibility: hidden;
|
1192
|
+
opacity: 0;
|
1193
|
+
z-index: 100;
|
1194
|
+
|
1195
|
+
-webkit-transition: all 1s ease;
|
1196
|
+
-moz-transition: all 1s ease;
|
1197
|
+
-ms-transition: all 1s ease;
|
1198
|
+
-o-transition: all 1s ease;
|
1199
|
+
transition: all 1s ease;
|
1200
|
+
}
|
1201
|
+
.reveal.paused .pause-overlay {
|
1202
|
+
visibility: visible;
|
1203
|
+
opacity: 1;
|
1204
|
+
}
|
1205
|
+
|
1206
|
+
|
1207
|
+
/*********************************************
|
1208
|
+
* FALLBACK
|
1209
|
+
*********************************************/
|
1210
|
+
|
1211
|
+
.no-transforms {
|
1212
|
+
overflow-y: auto;
|
1213
|
+
}
|
1214
|
+
|
1215
|
+
.no-transforms .reveal .slides {
|
1216
|
+
position: relative;
|
1217
|
+
width: 80%;
|
1218
|
+
height: auto !important;
|
1219
|
+
top: 0;
|
1220
|
+
left: 50%;
|
1221
|
+
margin: 0;
|
1222
|
+
text-align: center;
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
.no-transforms .reveal .controls,
|
1226
|
+
.no-transforms .reveal .progress {
|
1227
|
+
display: none !important;
|
1228
|
+
}
|
1229
|
+
|
1230
|
+
.no-transforms .reveal .slides section {
|
1231
|
+
display: block !important;
|
1232
|
+
opacity: 1 !important;
|
1233
|
+
position: relative !important;
|
1234
|
+
height: auto;
|
1235
|
+
min-height: auto;
|
1236
|
+
top: 0;
|
1237
|
+
left: -50%;
|
1238
|
+
margin: 70px 0;
|
1239
|
+
|
1240
|
+
-webkit-transform: none;
|
1241
|
+
-moz-transform: none;
|
1242
|
+
-ms-transform: none;
|
1243
|
+
-o-transform: none;
|
1244
|
+
transform: none;
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
.no-transforms .reveal .slides section section {
|
1248
|
+
left: 0;
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
.reveal .no-transition,
|
1252
|
+
.reveal .no-transition * {
|
1253
|
+
-webkit-transition: none !important;
|
1254
|
+
-moz-transition: none !important;
|
1255
|
+
-ms-transition: none !important;
|
1256
|
+
-o-transition: none !important;
|
1257
|
+
transition: none !important;
|
1258
|
+
}
|
1259
|
+
|
1260
|
+
|
1261
|
+
/*********************************************
|
1262
|
+
* BACKGROUND STATES [DEPRECATED]
|
1263
|
+
*********************************************/
|
1264
|
+
|
1265
|
+
.reveal .state-background {
|
1266
|
+
position: absolute;
|
1267
|
+
width: 100%;
|
1268
|
+
height: 100%;
|
1269
|
+
background: rgba( 0, 0, 0, 0 );
|
1270
|
+
|
1271
|
+
-webkit-transition: background 800ms ease;
|
1272
|
+
-moz-transition: background 800ms ease;
|
1273
|
+
-ms-transition: background 800ms ease;
|
1274
|
+
-o-transition: background 800ms ease;
|
1275
|
+
transition: background 800ms ease;
|
1276
|
+
}
|
1277
|
+
.alert .reveal .state-background {
|
1278
|
+
background: rgba( 200, 50, 30, 0.6 );
|
1279
|
+
}
|
1280
|
+
.soothe .reveal .state-background {
|
1281
|
+
background: rgba( 50, 200, 90, 0.4 );
|
1282
|
+
}
|
1283
|
+
.blackout .reveal .state-background {
|
1284
|
+
background: rgba( 0, 0, 0, 0.6 );
|
1285
|
+
}
|
1286
|
+
.whiteout .reveal .state-background {
|
1287
|
+
background: rgba( 255, 255, 255, 0.6 );
|
1288
|
+
}
|
1289
|
+
.cobalt .reveal .state-background {
|
1290
|
+
background: rgba( 22, 152, 213, 0.6 );
|
1291
|
+
}
|
1292
|
+
.mint .reveal .state-background {
|
1293
|
+
background: rgba( 22, 213, 75, 0.6 );
|
1294
|
+
}
|
1295
|
+
.submerge .reveal .state-background {
|
1296
|
+
background: rgba( 12, 25, 77, 0.6);
|
1297
|
+
}
|
1298
|
+
.lila .reveal .state-background {
|
1299
|
+
background: rgba( 180, 50, 140, 0.6 );
|
1300
|
+
}
|
1301
|
+
.sunset .reveal .state-background {
|
1302
|
+
background: rgba( 255, 122, 0, 0.6 );
|
1303
|
+
}
|
1304
|
+
|
1305
|
+
|
1306
|
+
/*********************************************
|
1307
|
+
* PER-SLIDE BACKGROUNDS
|
1308
|
+
*********************************************/
|
1309
|
+
|
1310
|
+
.reveal>.backgrounds {
|
1311
|
+
position: absolute;
|
1312
|
+
width: 100%;
|
1313
|
+
height: 100%;
|
1314
|
+
|
1315
|
+
-webkit-perspective: 600px;
|
1316
|
+
-moz-perspective: 600px;
|
1317
|
+
-ms-perspective: 600px;
|
1318
|
+
perspective: 600px;
|
1319
|
+
}
|
1320
|
+
.reveal .slide-background {
|
1321
|
+
position: absolute;
|
1322
|
+
width: 100%;
|
1323
|
+
height: 100%;
|
1324
|
+
opacity: 0;
|
1325
|
+
visibility: hidden;
|
1326
|
+
|
1327
|
+
background-color: rgba( 0, 0, 0, 0 );
|
1328
|
+
background-position: 50% 50%;
|
1329
|
+
background-repeat: no-repeat;
|
1330
|
+
background-size: cover;
|
1331
|
+
|
1332
|
+
-webkit-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
1333
|
+
-moz-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
1334
|
+
-ms-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
1335
|
+
-o-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
1336
|
+
transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
1337
|
+
}
|
1338
|
+
.reveal .slide-background.present {
|
1339
|
+
opacity: 1;
|
1340
|
+
visibility: visible;
|
1341
|
+
}
|
1342
|
+
|
1343
|
+
.print-pdf .reveal .slide-background {
|
1344
|
+
opacity: 1 !important;
|
1345
|
+
visibility: visible !important;
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
/* Immediate transition style */
|
1349
|
+
.reveal[data-background-transition=none]>.backgrounds .slide-background,
|
1350
|
+
.reveal>.backgrounds .slide-background[data-background-transition=none] {
|
1351
|
+
-webkit-transition: none;
|
1352
|
+
-moz-transition: none;
|
1353
|
+
-ms-transition: none;
|
1354
|
+
-o-transition: none;
|
1355
|
+
transition: none;
|
1356
|
+
}
|
1357
|
+
|
1358
|
+
/* 2D slide */
|
1359
|
+
.reveal[data-background-transition=slide]>.backgrounds .slide-background,
|
1360
|
+
.reveal>.backgrounds .slide-background[data-background-transition=slide] {
|
1361
|
+
opacity: 1;
|
1362
|
+
|
1363
|
+
-webkit-backface-visibility: hidden;
|
1364
|
+
-moz-backface-visibility: hidden;
|
1365
|
+
-ms-backface-visibility: hidden;
|
1366
|
+
backface-visibility: hidden;
|
1367
|
+
}
|
1368
|
+
.reveal[data-background-transition=slide]>.backgrounds .slide-background.past,
|
1369
|
+
.reveal>.backgrounds .slide-background.past[data-background-transition=slide] {
|
1370
|
+
-webkit-transform: translate(-100%, 0);
|
1371
|
+
-moz-transform: translate(-100%, 0);
|
1372
|
+
-ms-transform: translate(-100%, 0);
|
1373
|
+
-o-transform: translate(-100%, 0);
|
1374
|
+
transform: translate(-100%, 0);
|
1375
|
+
}
|
1376
|
+
.reveal[data-background-transition=slide]>.backgrounds .slide-background.future,
|
1377
|
+
.reveal>.backgrounds .slide-background.future[data-background-transition=slide] {
|
1378
|
+
-webkit-transform: translate(100%, 0);
|
1379
|
+
-moz-transform: translate(100%, 0);
|
1380
|
+
-ms-transform: translate(100%, 0);
|
1381
|
+
-o-transform: translate(100%, 0);
|
1382
|
+
transform: translate(100%, 0);
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past,
|
1386
|
+
.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] {
|
1387
|
+
-webkit-transform: translate(0, -100%);
|
1388
|
+
-moz-transform: translate(0, -100%);
|
1389
|
+
-ms-transform: translate(0, -100%);
|
1390
|
+
-o-transform: translate(0, -100%);
|
1391
|
+
transform: translate(0, -100%);
|
1392
|
+
}
|
1393
|
+
.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future,
|
1394
|
+
.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] {
|
1395
|
+
-webkit-transform: translate(0, 100%);
|
1396
|
+
-moz-transform: translate(0, 100%);
|
1397
|
+
-ms-transform: translate(0, 100%);
|
1398
|
+
-o-transform: translate(0, 100%);
|
1399
|
+
transform: translate(0, 100%);
|
1400
|
+
}
|
1401
|
+
|
1402
|
+
|
1403
|
+
/* Convex */
|
1404
|
+
.reveal[data-background-transition=convex]>.backgrounds .slide-background.past,
|
1405
|
+
.reveal>.backgrounds .slide-background.past[data-background-transition=convex] {
|
1406
|
+
opacity: 0;
|
1407
|
+
|
1408
|
+
-webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
1409
|
+
-moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
1410
|
+
-ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
1411
|
+
transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
1412
|
+
}
|
1413
|
+
.reveal[data-background-transition=convex]>.backgrounds .slide-background.future,
|
1414
|
+
.reveal>.backgrounds .slide-background.future[data-background-transition=convex] {
|
1415
|
+
opacity: 0;
|
1416
|
+
|
1417
|
+
-webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
1418
|
+
-moz-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
1419
|
+
-ms-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
1420
|
+
transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
1421
|
+
}
|
1422
|
+
|
1423
|
+
.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past,
|
1424
|
+
.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] {
|
1425
|
+
opacity: 0;
|
1426
|
+
|
1427
|
+
-webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);
|
1428
|
+
-moz-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);
|
1429
|
+
-ms-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);
|
1430
|
+
transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);
|
1431
|
+
}
|
1432
|
+
.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future,
|
1433
|
+
.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] {
|
1434
|
+
opacity: 0;
|
1435
|
+
|
1436
|
+
-webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);
|
1437
|
+
-moz-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);
|
1438
|
+
-ms-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);
|
1439
|
+
transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
|
1443
|
+
/* Concave */
|
1444
|
+
.reveal[data-background-transition=concave]>.backgrounds .slide-background.past,
|
1445
|
+
.reveal>.backgrounds .slide-background.past[data-background-transition=concave] {
|
1446
|
+
opacity: 0;
|
1447
|
+
|
1448
|
+
-webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
1449
|
+
-moz-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
1450
|
+
-ms-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
1451
|
+
transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
1452
|
+
}
|
1453
|
+
.reveal[data-background-transition=concave]>.backgrounds .slide-background.future,
|
1454
|
+
.reveal>.backgrounds .slide-background.future[data-background-transition=concave] {
|
1455
|
+
opacity: 0;
|
1456
|
+
|
1457
|
+
-webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
1458
|
+
-moz-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
1459
|
+
-ms-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
1460
|
+
transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
1461
|
+
}
|
1462
|
+
|
1463
|
+
.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past,
|
1464
|
+
.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] {
|
1465
|
+
opacity: 0;
|
1466
|
+
|
1467
|
+
-webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);
|
1468
|
+
-moz-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);
|
1469
|
+
-ms-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);
|
1470
|
+
transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);
|
1471
|
+
}
|
1472
|
+
.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future,
|
1473
|
+
.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] {
|
1474
|
+
opacity: 0;
|
1475
|
+
|
1476
|
+
-webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);
|
1477
|
+
-moz-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);
|
1478
|
+
-ms-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);
|
1479
|
+
transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);
|
1480
|
+
}
|
1481
|
+
|
1482
|
+
/* Zoom */
|
1483
|
+
.reveal[data-background-transition=zoom]>.backgrounds .slide-background,
|
1484
|
+
.reveal>.backgrounds .slide-background[data-background-transition=zoom] {
|
1485
|
+
-webkit-transition-timing-function: ease;
|
1486
|
+
-moz-transition-timing-function: ease;
|
1487
|
+
-ms-transition-timing-function: ease;
|
1488
|
+
-o-transition-timing-function: ease;
|
1489
|
+
transition-timing-function: ease;
|
1490
|
+
}
|
1491
|
+
|
1492
|
+
.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past,
|
1493
|
+
.reveal>.backgrounds .slide-background.past[data-background-transition=zoom] {
|
1494
|
+
opacity: 0;
|
1495
|
+
visibility: hidden;
|
1496
|
+
|
1497
|
+
-webkit-transform: scale(16);
|
1498
|
+
-moz-transform: scale(16);
|
1499
|
+
-ms-transform: scale(16);
|
1500
|
+
-o-transform: scale(16);
|
1501
|
+
transform: scale(16);
|
1502
|
+
}
|
1503
|
+
.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future,
|
1504
|
+
.reveal>.backgrounds .slide-background.future[data-background-transition=zoom] {
|
1505
|
+
opacity: 0;
|
1506
|
+
visibility: hidden;
|
1507
|
+
|
1508
|
+
-webkit-transform: scale(0.2);
|
1509
|
+
-moz-transform: scale(0.2);
|
1510
|
+
-ms-transform: scale(0.2);
|
1511
|
+
-o-transform: scale(0.2);
|
1512
|
+
transform: scale(0.2);
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past,
|
1516
|
+
.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] {
|
1517
|
+
opacity: 0;
|
1518
|
+
visibility: hidden;
|
1519
|
+
|
1520
|
+
-webkit-transform: scale(16);
|
1521
|
+
-moz-transform: scale(16);
|
1522
|
+
-ms-transform: scale(16);
|
1523
|
+
-o-transform: scale(16);
|
1524
|
+
transform: scale(16);
|
1525
|
+
}
|
1526
|
+
.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future,
|
1527
|
+
.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] {
|
1528
|
+
opacity: 0;
|
1529
|
+
visibility: hidden;
|
1530
|
+
|
1531
|
+
-webkit-transform: scale(0.2);
|
1532
|
+
-moz-transform: scale(0.2);
|
1533
|
+
-ms-transform: scale(0.2);
|
1534
|
+
-o-transform: scale(0.2);
|
1535
|
+
transform: scale(0.2);
|
1536
|
+
}
|
1537
|
+
|
1538
|
+
|
1539
|
+
/* Global transition speed settings */
|
1540
|
+
.reveal[data-transition-speed="fast"]>.backgrounds .slide-background {
|
1541
|
+
-webkit-transition-duration: 400ms;
|
1542
|
+
-moz-transition-duration: 400ms;
|
1543
|
+
-ms-transition-duration: 400ms;
|
1544
|
+
transition-duration: 400ms;
|
1545
|
+
}
|
1546
|
+
.reveal[data-transition-speed="slow"]>.backgrounds .slide-background {
|
1547
|
+
-webkit-transition-duration: 1200ms;
|
1548
|
+
-moz-transition-duration: 1200ms;
|
1549
|
+
-ms-transition-duration: 1200ms;
|
1550
|
+
transition-duration: 1200ms;
|
1551
|
+
}
|
1552
|
+
|
1553
|
+
|
1554
|
+
/*********************************************
|
1555
|
+
* RTL SUPPORT
|
1556
|
+
*********************************************/
|
1557
|
+
|
1558
|
+
.reveal.rtl .slides,
|
1559
|
+
.reveal.rtl .slides h1,
|
1560
|
+
.reveal.rtl .slides h2,
|
1561
|
+
.reveal.rtl .slides h3,
|
1562
|
+
.reveal.rtl .slides h4,
|
1563
|
+
.reveal.rtl .slides h5,
|
1564
|
+
.reveal.rtl .slides h6 {
|
1565
|
+
direction: rtl;
|
1566
|
+
font-family: sans-serif;
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
.reveal.rtl pre,
|
1570
|
+
.reveal.rtl code {
|
1571
|
+
direction: ltr;
|
1572
|
+
}
|
1573
|
+
|
1574
|
+
.reveal.rtl ol,
|
1575
|
+
.reveal.rtl ul {
|
1576
|
+
text-align: right;
|
1577
|
+
}
|
1578
|
+
|
1579
|
+
.reveal.rtl .progress span {
|
1580
|
+
float: right
|
1581
|
+
}
|
1582
|
+
|
1583
|
+
/*********************************************
|
1584
|
+
* PARALLAX BACKGROUND
|
1585
|
+
*********************************************/
|
1586
|
+
|
1587
|
+
.reveal.has-parallax-background .backgrounds {
|
1588
|
+
-webkit-transition: all 0.8s ease;
|
1589
|
+
-moz-transition: all 0.8s ease;
|
1590
|
+
-ms-transition: all 0.8s ease;
|
1591
|
+
transition: all 0.8s ease;
|
1592
|
+
}
|
1593
|
+
|
1594
|
+
/* Global transition speed settings */
|
1595
|
+
.reveal.has-parallax-background[data-transition-speed="fast"] .backgrounds {
|
1596
|
+
-webkit-transition-duration: 400ms;
|
1597
|
+
-moz-transition-duration: 400ms;
|
1598
|
+
-ms-transition-duration: 400ms;
|
1599
|
+
transition-duration: 400ms;
|
1600
|
+
}
|
1601
|
+
.reveal.has-parallax-background[data-transition-speed="slow"] .backgrounds {
|
1602
|
+
-webkit-transition-duration: 1200ms;
|
1603
|
+
-moz-transition-duration: 1200ms;
|
1604
|
+
-ms-transition-duration: 1200ms;
|
1605
|
+
transition-duration: 1200ms;
|
1606
|
+
}
|
1607
|
+
|
1608
|
+
|
1609
|
+
/*********************************************
|
1610
|
+
* LINK PREVIEW OVERLAY
|
1611
|
+
*********************************************/
|
1612
|
+
|
1613
|
+
.reveal .preview-link-overlay {
|
1614
|
+
position: absolute;
|
1615
|
+
top: 0;
|
1616
|
+
left: 0;
|
1617
|
+
width: 100%;
|
1618
|
+
height: 100%;
|
1619
|
+
z-index: 1000;
|
1620
|
+
background: rgba( 0, 0, 0, 0.9 );
|
1621
|
+
opacity: 0;
|
1622
|
+
visibility: hidden;
|
1623
|
+
|
1624
|
+
-webkit-transition: all 0.3s ease;
|
1625
|
+
-moz-transition: all 0.3s ease;
|
1626
|
+
-ms-transition: all 0.3s ease;
|
1627
|
+
transition: all 0.3s ease;
|
1628
|
+
}
|
1629
|
+
.reveal .preview-link-overlay.visible {
|
1630
|
+
opacity: 1;
|
1631
|
+
visibility: visible;
|
1632
|
+
}
|
1633
|
+
|
1634
|
+
.reveal .preview-link-overlay .spinner {
|
1635
|
+
position: absolute;
|
1636
|
+
display: block;
|
1637
|
+
top: 50%;
|
1638
|
+
left: 50%;
|
1639
|
+
width: 32px;
|
1640
|
+
height: 32px;
|
1641
|
+
margin: -16px 0 0 -16px;
|
1642
|
+
z-index: 10;
|
1643
|
+
background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);
|
1644
|
+
|
1645
|
+
visibility: visible;
|
1646
|
+
opacity: 0.6;
|
1647
|
+
|
1648
|
+
-webkit-transition: all 0.3s ease;
|
1649
|
+
-moz-transition: all 0.3s ease;
|
1650
|
+
-ms-transition: all 0.3s ease;
|
1651
|
+
transition: all 0.3s ease;
|
1652
|
+
}
|
1653
|
+
|
1654
|
+
.reveal .preview-link-overlay header {
|
1655
|
+
position: absolute;
|
1656
|
+
left: 0;
|
1657
|
+
top: 0;
|
1658
|
+
width: 100%;
|
1659
|
+
height: 40px;
|
1660
|
+
z-index: 2;
|
1661
|
+
border-bottom: 1px solid #222;
|
1662
|
+
}
|
1663
|
+
.reveal .preview-link-overlay header a {
|
1664
|
+
display: inline-block;
|
1665
|
+
width: 40px;
|
1666
|
+
height: 40px;
|
1667
|
+
padding: 0 10px;
|
1668
|
+
float: right;
|
1669
|
+
opacity: 0.6;
|
1670
|
+
|
1671
|
+
box-sizing: border-box;
|
1672
|
+
}
|
1673
|
+
.reveal .preview-link-overlay header a:hover {
|
1674
|
+
opacity: 1;
|
1675
|
+
}
|
1676
|
+
.reveal .preview-link-overlay header a .icon {
|
1677
|
+
display: inline-block;
|
1678
|
+
width: 20px;
|
1679
|
+
height: 20px;
|
1680
|
+
|
1681
|
+
background-position: 50% 50%;
|
1682
|
+
background-size: 100%;
|
1683
|
+
background-repeat: no-repeat;
|
1684
|
+
}
|
1685
|
+
.reveal .preview-link-overlay header a.close .icon {
|
1686
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC);
|
1687
|
+
}
|
1688
|
+
.reveal .preview-link-overlay header a.external .icon {
|
1689
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==);
|
1690
|
+
}
|
1691
|
+
|
1692
|
+
.reveal .preview-link-overlay .viewport {
|
1693
|
+
position: absolute;
|
1694
|
+
top: 40px;
|
1695
|
+
right: 0;
|
1696
|
+
bottom: 0;
|
1697
|
+
left: 0;
|
1698
|
+
}
|
1699
|
+
|
1700
|
+
.reveal .preview-link-overlay .viewport iframe {
|
1701
|
+
width: 100%;
|
1702
|
+
height: 100%;
|
1703
|
+
max-width: 100%;
|
1704
|
+
max-height: 100%;
|
1705
|
+
border: 0;
|
1706
|
+
|
1707
|
+
opacity: 0;
|
1708
|
+
visibility: hidden;
|
1709
|
+
|
1710
|
+
-webkit-transition: all 0.3s ease;
|
1711
|
+
-moz-transition: all 0.3s ease;
|
1712
|
+
-ms-transition: all 0.3s ease;
|
1713
|
+
transition: all 0.3s ease;
|
1714
|
+
}
|
1715
|
+
|
1716
|
+
.reveal .preview-link-overlay.loaded .viewport iframe {
|
1717
|
+
opacity: 1;
|
1718
|
+
visibility: visible;
|
1719
|
+
}
|
1720
|
+
|
1721
|
+
.reveal .preview-link-overlay.loaded .spinner {
|
1722
|
+
opacity: 0;
|
1723
|
+
visibility: hidden;
|
1724
|
+
|
1725
|
+
-webkit-transform: scale(0.2);
|
1726
|
+
-moz-transform: scale(0.2);
|
1727
|
+
-ms-transform: scale(0.2);
|
1728
|
+
transform: scale(0.2);
|
1729
|
+
}
|
1730
|
+
|
1731
|
+
|
1732
|
+
|
1733
|
+
/*********************************************
|
1734
|
+
* PLAYBACK COMPONENT
|
1735
|
+
*********************************************/
|
1736
|
+
|
1737
|
+
.reveal .playback {
|
1738
|
+
position: fixed;
|
1739
|
+
left: 15px;
|
1740
|
+
bottom: 15px;
|
1741
|
+
z-index: 30;
|
1742
|
+
cursor: pointer;
|
1743
|
+
|
1744
|
+
-webkit-transition: all 400ms ease;
|
1745
|
+
-moz-transition: all 400ms ease;
|
1746
|
+
-ms-transition: all 400ms ease;
|
1747
|
+
transition: all 400ms ease;
|
1748
|
+
}
|
1749
|
+
|
1750
|
+
.reveal.overview .playback {
|
1751
|
+
opacity: 0;
|
1752
|
+
visibility: hidden;
|
1753
|
+
}
|
1754
|
+
|
1755
|
+
|
1756
|
+
/*********************************************
|
1757
|
+
* ROLLING LINKS
|
1758
|
+
*********************************************/
|
1759
|
+
|
1760
|
+
.reveal .roll {
|
1761
|
+
display: inline-block;
|
1762
|
+
line-height: 1.2;
|
1763
|
+
overflow: hidden;
|
1764
|
+
|
1765
|
+
vertical-align: top;
|
1766
|
+
|
1767
|
+
-webkit-perspective: 400px;
|
1768
|
+
-moz-perspective: 400px;
|
1769
|
+
-ms-perspective: 400px;
|
1770
|
+
perspective: 400px;
|
1771
|
+
|
1772
|
+
-webkit-perspective-origin: 50% 50%;
|
1773
|
+
-moz-perspective-origin: 50% 50%;
|
1774
|
+
-ms-perspective-origin: 50% 50%;
|
1775
|
+
perspective-origin: 50% 50%;
|
1776
|
+
}
|
1777
|
+
.reveal .roll:hover {
|
1778
|
+
background: none;
|
1779
|
+
text-shadow: none;
|
1780
|
+
}
|
1781
|
+
.reveal .roll span {
|
1782
|
+
display: block;
|
1783
|
+
position: relative;
|
1784
|
+
padding: 0 2px;
|
1785
|
+
|
1786
|
+
pointer-events: none;
|
1787
|
+
|
1788
|
+
-webkit-transition: all 400ms ease;
|
1789
|
+
-moz-transition: all 400ms ease;
|
1790
|
+
-ms-transition: all 400ms ease;
|
1791
|
+
transition: all 400ms ease;
|
1792
|
+
|
1793
|
+
-webkit-transform-origin: 50% 0%;
|
1794
|
+
-moz-transform-origin: 50% 0%;
|
1795
|
+
-ms-transform-origin: 50% 0%;
|
1796
|
+
transform-origin: 50% 0%;
|
1797
|
+
|
1798
|
+
-webkit-transform-style: preserve-3d;
|
1799
|
+
-moz-transform-style: preserve-3d;
|
1800
|
+
-ms-transform-style: preserve-3d;
|
1801
|
+
transform-style: preserve-3d;
|
1802
|
+
|
1803
|
+
-webkit-backface-visibility: hidden;
|
1804
|
+
-moz-backface-visibility: hidden;
|
1805
|
+
backface-visibility: hidden;
|
1806
|
+
}
|
1807
|
+
.reveal .roll:hover span {
|
1808
|
+
background: rgba(0,0,0,0.5);
|
1809
|
+
|
1810
|
+
-webkit-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
|
1811
|
+
-moz-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
|
1812
|
+
-ms-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
|
1813
|
+
transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
|
1814
|
+
}
|
1815
|
+
.reveal .roll span:after {
|
1816
|
+
content: attr(data-title);
|
1817
|
+
|
1818
|
+
display: block;
|
1819
|
+
position: absolute;
|
1820
|
+
left: 0;
|
1821
|
+
top: 0;
|
1822
|
+
padding: 0 2px;
|
1823
|
+
|
1824
|
+
-webkit-backface-visibility: hidden;
|
1825
|
+
-moz-backface-visibility: hidden;
|
1826
|
+
backface-visibility: hidden;
|
1827
|
+
|
1828
|
+
-webkit-transform-origin: 50% 0%;
|
1829
|
+
-moz-transform-origin: 50% 0%;
|
1830
|
+
-ms-transform-origin: 50% 0%;
|
1831
|
+
transform-origin: 50% 0%;
|
1832
|
+
|
1833
|
+
-webkit-transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );
|
1834
|
+
-moz-transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );
|
1835
|
+
-ms-transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );
|
1836
|
+
transform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );
|
1837
|
+
}
|
1838
|
+
|
1839
|
+
|
1840
|
+
/*********************************************
|
1841
|
+
* SPEAKER NOTES
|
1842
|
+
*********************************************/
|
1843
|
+
|
1844
|
+
.reveal aside.notes {
|
1845
|
+
display: none;
|
1846
|
+
}
|
1847
|
+
|
1848
|
+
|
1849
|
+
/*********************************************
|
1850
|
+
* ZOOM PLUGIN
|
1851
|
+
*********************************************/
|
1852
|
+
|
1853
|
+
.zoomed .reveal *,
|
1854
|
+
.zoomed .reveal *:before,
|
1855
|
+
.zoomed .reveal *:after {
|
1856
|
+
-webkit-transform: none !important;
|
1857
|
+
-moz-transform: none !important;
|
1858
|
+
-ms-transform: none !important;
|
1859
|
+
transform: none !important;
|
1860
|
+
|
1861
|
+
-webkit-backface-visibility: visible !important;
|
1862
|
+
-moz-backface-visibility: visible !important;
|
1863
|
+
-ms-backface-visibility: visible !important;
|
1864
|
+
backface-visibility: visible !important;
|
1865
|
+
}
|
1866
|
+
|
1867
|
+
.zoomed .reveal .progress,
|
1868
|
+
.zoomed .reveal .controls {
|
1869
|
+
opacity: 0;
|
1870
|
+
}
|
1871
|
+
|
1872
|
+
.zoomed .reveal .roll span {
|
1873
|
+
background: none;
|
1874
|
+
}
|
1875
|
+
|
1876
|
+
.zoomed .reveal .roll span:after {
|
1877
|
+
visibility: hidden;
|
1878
|
+
}
|
1879
|
+
|
1880
|
+
|