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,148 @@
|
|
1
|
+
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
|
2
|
+
/**
|
3
|
+
* Solarized Dark theme for reveal.js.
|
4
|
+
* Author: Achim Staebler
|
5
|
+
*/
|
6
|
+
@font-face {
|
7
|
+
font-family: 'League Gothic';
|
8
|
+
src: url("../../lib/font/league_gothic-webfont.eot");
|
9
|
+
src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg");
|
10
|
+
font-weight: normal;
|
11
|
+
font-style: normal; }
|
12
|
+
|
13
|
+
/**
|
14
|
+
* Solarized colors by Ethan Schoonover
|
15
|
+
*/
|
16
|
+
html * {
|
17
|
+
color-profile: sRGB;
|
18
|
+
rendering-intent: auto; }
|
19
|
+
|
20
|
+
/*********************************************
|
21
|
+
* GLOBAL STYLES
|
22
|
+
*********************************************/
|
23
|
+
body {
|
24
|
+
background: #002b36;
|
25
|
+
background-color: #002b36; }
|
26
|
+
|
27
|
+
.reveal {
|
28
|
+
font-family: "Lato", sans-serif;
|
29
|
+
font-size: 36px;
|
30
|
+
font-weight: normal;
|
31
|
+
letter-spacing: -0.02em;
|
32
|
+
color: #93a1a1; }
|
33
|
+
|
34
|
+
::selection {
|
35
|
+
color: white;
|
36
|
+
background: #d33682;
|
37
|
+
text-shadow: none; }
|
38
|
+
|
39
|
+
/*********************************************
|
40
|
+
* HEADERS
|
41
|
+
*********************************************/
|
42
|
+
.reveal h1,
|
43
|
+
.reveal h2,
|
44
|
+
.reveal h3,
|
45
|
+
.reveal h4,
|
46
|
+
.reveal h5,
|
47
|
+
.reveal h6 {
|
48
|
+
margin: 0 0 20px 0;
|
49
|
+
color: #eee8d5;
|
50
|
+
font-family: "League Gothic", Impact, sans-serif;
|
51
|
+
line-height: 0.9em;
|
52
|
+
letter-spacing: 0.02em;
|
53
|
+
text-transform: uppercase;
|
54
|
+
text-shadow: none; }
|
55
|
+
|
56
|
+
.reveal h1 {
|
57
|
+
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
|
58
|
+
|
59
|
+
/*********************************************
|
60
|
+
* LINKS
|
61
|
+
*********************************************/
|
62
|
+
.reveal a:not(.image) {
|
63
|
+
color: #268bd2;
|
64
|
+
text-decoration: none;
|
65
|
+
-webkit-transition: color .15s ease;
|
66
|
+
-moz-transition: color .15s ease;
|
67
|
+
-ms-transition: color .15s ease;
|
68
|
+
-o-transition: color .15s ease;
|
69
|
+
transition: color .15s ease; }
|
70
|
+
|
71
|
+
.reveal a:not(.image):hover {
|
72
|
+
color: #78b9e6;
|
73
|
+
text-shadow: none;
|
74
|
+
border: none; }
|
75
|
+
|
76
|
+
.reveal .roll span:after {
|
77
|
+
color: #fff;
|
78
|
+
background: #1a6091; }
|
79
|
+
|
80
|
+
/*********************************************
|
81
|
+
* IMAGES
|
82
|
+
*********************************************/
|
83
|
+
.reveal section img {
|
84
|
+
margin: 15px 0px;
|
85
|
+
background: rgba(255, 255, 255, 0.12);
|
86
|
+
border: 4px solid #93a1a1;
|
87
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
88
|
+
-webkit-transition: all .2s linear;
|
89
|
+
-moz-transition: all .2s linear;
|
90
|
+
-ms-transition: all .2s linear;
|
91
|
+
-o-transition: all .2s linear;
|
92
|
+
transition: all .2s linear; }
|
93
|
+
|
94
|
+
.reveal a:hover img {
|
95
|
+
background: rgba(255, 255, 255, 0.2);
|
96
|
+
border-color: #268bd2;
|
97
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
|
98
|
+
|
99
|
+
/*********************************************
|
100
|
+
* NAVIGATION CONTROLS
|
101
|
+
*********************************************/
|
102
|
+
.reveal .controls div.navigate-left,
|
103
|
+
.reveal .controls div.navigate-left.enabled {
|
104
|
+
border-right-color: #268bd2; }
|
105
|
+
|
106
|
+
.reveal .controls div.navigate-right,
|
107
|
+
.reveal .controls div.navigate-right.enabled {
|
108
|
+
border-left-color: #268bd2; }
|
109
|
+
|
110
|
+
.reveal .controls div.navigate-up,
|
111
|
+
.reveal .controls div.navigate-up.enabled {
|
112
|
+
border-bottom-color: #268bd2; }
|
113
|
+
|
114
|
+
.reveal .controls div.navigate-down,
|
115
|
+
.reveal .controls div.navigate-down.enabled {
|
116
|
+
border-top-color: #268bd2; }
|
117
|
+
|
118
|
+
.reveal .controls div.navigate-left.enabled:hover {
|
119
|
+
border-right-color: #78b9e6; }
|
120
|
+
|
121
|
+
.reveal .controls div.navigate-right.enabled:hover {
|
122
|
+
border-left-color: #78b9e6; }
|
123
|
+
|
124
|
+
.reveal .controls div.navigate-up.enabled:hover {
|
125
|
+
border-bottom-color: #78b9e6; }
|
126
|
+
|
127
|
+
.reveal .controls div.navigate-down.enabled:hover {
|
128
|
+
border-top-color: #78b9e6; }
|
129
|
+
|
130
|
+
/*********************************************
|
131
|
+
* PROGRESS BAR
|
132
|
+
*********************************************/
|
133
|
+
.reveal .progress {
|
134
|
+
background: rgba(0, 0, 0, 0.2); }
|
135
|
+
|
136
|
+
.reveal .progress span {
|
137
|
+
background: #268bd2;
|
138
|
+
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
139
|
+
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
140
|
+
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
141
|
+
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
142
|
+
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
143
|
+
|
144
|
+
/*********************************************
|
145
|
+
* SLIDE NUMBER
|
146
|
+
*********************************************/
|
147
|
+
.reveal .slide-number {
|
148
|
+
color: #268bd2; }
|
@@ -0,0 +1,136 @@
|
|
1
|
+
@import url(https://fonts.googleapis.com/css?family=Montserrat:700);
|
2
|
+
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
|
3
|
+
/**
|
4
|
+
* Black theme for reveal.js.
|
5
|
+
*
|
6
|
+
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
|
7
|
+
*/
|
8
|
+
/*********************************************
|
9
|
+
* GLOBAL STYLES
|
10
|
+
*********************************************/
|
11
|
+
body {
|
12
|
+
background: #111111;
|
13
|
+
background-color: #111111; }
|
14
|
+
|
15
|
+
.reveal {
|
16
|
+
font-family: "Open Sans", sans-serif;
|
17
|
+
font-size: 30px;
|
18
|
+
font-weight: normal;
|
19
|
+
letter-spacing: -0.02em;
|
20
|
+
color: #eeeeee; }
|
21
|
+
|
22
|
+
::selection {
|
23
|
+
color: white;
|
24
|
+
background: #e7ad52;
|
25
|
+
text-shadow: none; }
|
26
|
+
|
27
|
+
/*********************************************
|
28
|
+
* HEADERS
|
29
|
+
*********************************************/
|
30
|
+
.reveal h1,
|
31
|
+
.reveal h2,
|
32
|
+
.reveal h3,
|
33
|
+
.reveal h4,
|
34
|
+
.reveal h5,
|
35
|
+
.reveal h6 {
|
36
|
+
margin: 0 0 20px 0;
|
37
|
+
color: #eeeeee;
|
38
|
+
font-family: "Montserrat", Impact, sans-serif;
|
39
|
+
line-height: 0.9em;
|
40
|
+
letter-spacing: -0.03em;
|
41
|
+
text-transform: none;
|
42
|
+
text-shadow: none; }
|
43
|
+
|
44
|
+
.reveal h1 {
|
45
|
+
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
|
46
|
+
|
47
|
+
/*********************************************
|
48
|
+
* LINKS
|
49
|
+
*********************************************/
|
50
|
+
.reveal a:not(.image) {
|
51
|
+
color: #e7ad52;
|
52
|
+
text-decoration: none;
|
53
|
+
-webkit-transition: color .15s ease;
|
54
|
+
-moz-transition: color .15s ease;
|
55
|
+
-ms-transition: color .15s ease;
|
56
|
+
-o-transition: color .15s ease;
|
57
|
+
transition: color .15s ease; }
|
58
|
+
|
59
|
+
.reveal a:not(.image):hover {
|
60
|
+
color: #f3d7ac;
|
61
|
+
text-shadow: none;
|
62
|
+
border: none; }
|
63
|
+
|
64
|
+
.reveal .roll span:after {
|
65
|
+
color: #fff;
|
66
|
+
background: #d08a1d; }
|
67
|
+
|
68
|
+
/*********************************************
|
69
|
+
* IMAGES
|
70
|
+
*********************************************/
|
71
|
+
.reveal section img {
|
72
|
+
margin: 15px 0px;
|
73
|
+
background: rgba(255, 255, 255, 0.12);
|
74
|
+
border: 4px solid #eeeeee;
|
75
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
76
|
+
-webkit-transition: all .2s linear;
|
77
|
+
-moz-transition: all .2s linear;
|
78
|
+
-ms-transition: all .2s linear;
|
79
|
+
-o-transition: all .2s linear;
|
80
|
+
transition: all .2s linear; }
|
81
|
+
|
82
|
+
.reveal a:hover img {
|
83
|
+
background: rgba(255, 255, 255, 0.2);
|
84
|
+
border-color: #e7ad52;
|
85
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
|
86
|
+
|
87
|
+
/*********************************************
|
88
|
+
* NAVIGATION CONTROLS
|
89
|
+
*********************************************/
|
90
|
+
.reveal .controls div.navigate-left,
|
91
|
+
.reveal .controls div.navigate-left.enabled {
|
92
|
+
border-right-color: #e7ad52; }
|
93
|
+
|
94
|
+
.reveal .controls div.navigate-right,
|
95
|
+
.reveal .controls div.navigate-right.enabled {
|
96
|
+
border-left-color: #e7ad52; }
|
97
|
+
|
98
|
+
.reveal .controls div.navigate-up,
|
99
|
+
.reveal .controls div.navigate-up.enabled {
|
100
|
+
border-bottom-color: #e7ad52; }
|
101
|
+
|
102
|
+
.reveal .controls div.navigate-down,
|
103
|
+
.reveal .controls div.navigate-down.enabled {
|
104
|
+
border-top-color: #e7ad52; }
|
105
|
+
|
106
|
+
.reveal .controls div.navigate-left.enabled:hover {
|
107
|
+
border-right-color: #f3d7ac; }
|
108
|
+
|
109
|
+
.reveal .controls div.navigate-right.enabled:hover {
|
110
|
+
border-left-color: #f3d7ac; }
|
111
|
+
|
112
|
+
.reveal .controls div.navigate-up.enabled:hover {
|
113
|
+
border-bottom-color: #f3d7ac; }
|
114
|
+
|
115
|
+
.reveal .controls div.navigate-down.enabled:hover {
|
116
|
+
border-top-color: #f3d7ac; }
|
117
|
+
|
118
|
+
/*********************************************
|
119
|
+
* PROGRESS BAR
|
120
|
+
*********************************************/
|
121
|
+
.reveal .progress {
|
122
|
+
background: rgba(0, 0, 0, 0.2); }
|
123
|
+
|
124
|
+
.reveal .progress span {
|
125
|
+
background: #e7ad52;
|
126
|
+
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
127
|
+
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
128
|
+
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
129
|
+
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
130
|
+
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
131
|
+
|
132
|
+
/*********************************************
|
133
|
+
* SLIDE NUMBER
|
134
|
+
*********************************************/
|
135
|
+
.reveal .slide-number {
|
136
|
+
color: #e7ad52; }
|
@@ -0,0 +1,138 @@
|
|
1
|
+
/**
|
2
|
+
* A simple theme for reveal.js presentations, similar
|
3
|
+
* to the default theme. The accent color is brown.
|
4
|
+
*
|
5
|
+
* This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
|
6
|
+
*/
|
7
|
+
.reveal a:not(.image) {
|
8
|
+
line-height: 1.3em; }
|
9
|
+
|
10
|
+
/*********************************************
|
11
|
+
* GLOBAL STYLES
|
12
|
+
*********************************************/
|
13
|
+
body {
|
14
|
+
background: #f0f1eb;
|
15
|
+
background-color: #f0f1eb; }
|
16
|
+
|
17
|
+
.reveal {
|
18
|
+
font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
|
19
|
+
font-size: 36px;
|
20
|
+
font-weight: normal;
|
21
|
+
letter-spacing: -0.02em;
|
22
|
+
color: black; }
|
23
|
+
|
24
|
+
::selection {
|
25
|
+
color: white;
|
26
|
+
background: #26351c;
|
27
|
+
text-shadow: none; }
|
28
|
+
|
29
|
+
/*********************************************
|
30
|
+
* HEADERS
|
31
|
+
*********************************************/
|
32
|
+
.reveal h1,
|
33
|
+
.reveal h2,
|
34
|
+
.reveal h3,
|
35
|
+
.reveal h4,
|
36
|
+
.reveal h5,
|
37
|
+
.reveal h6 {
|
38
|
+
margin: 0 0 20px 0;
|
39
|
+
color: #383d3d;
|
40
|
+
font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
|
41
|
+
line-height: 0.9em;
|
42
|
+
letter-spacing: 0.02em;
|
43
|
+
text-transform: none;
|
44
|
+
text-shadow: none; }
|
45
|
+
|
46
|
+
.reveal h1 {
|
47
|
+
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
|
48
|
+
|
49
|
+
/*********************************************
|
50
|
+
* LINKS
|
51
|
+
*********************************************/
|
52
|
+
.reveal a:not(.image) {
|
53
|
+
color: #51483d;
|
54
|
+
text-decoration: none;
|
55
|
+
-webkit-transition: color .15s ease;
|
56
|
+
-moz-transition: color .15s ease;
|
57
|
+
-ms-transition: color .15s ease;
|
58
|
+
-o-transition: color .15s ease;
|
59
|
+
transition: color .15s ease; }
|
60
|
+
|
61
|
+
.reveal a:not(.image):hover {
|
62
|
+
color: #8b7c69;
|
63
|
+
text-shadow: none;
|
64
|
+
border: none; }
|
65
|
+
|
66
|
+
.reveal .roll span:after {
|
67
|
+
color: #fff;
|
68
|
+
background: #25211c; }
|
69
|
+
|
70
|
+
/*********************************************
|
71
|
+
* IMAGES
|
72
|
+
*********************************************/
|
73
|
+
.reveal section img {
|
74
|
+
margin: 15px 0px;
|
75
|
+
background: rgba(255, 255, 255, 0.12);
|
76
|
+
border: 4px solid black;
|
77
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
78
|
+
-webkit-transition: all .2s linear;
|
79
|
+
-moz-transition: all .2s linear;
|
80
|
+
-ms-transition: all .2s linear;
|
81
|
+
-o-transition: all .2s linear;
|
82
|
+
transition: all .2s linear; }
|
83
|
+
|
84
|
+
.reveal a:hover img {
|
85
|
+
background: rgba(255, 255, 255, 0.2);
|
86
|
+
border-color: #51483d;
|
87
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
|
88
|
+
|
89
|
+
/*********************************************
|
90
|
+
* NAVIGATION CONTROLS
|
91
|
+
*********************************************/
|
92
|
+
.reveal .controls div.navigate-left,
|
93
|
+
.reveal .controls div.navigate-left.enabled {
|
94
|
+
border-right-color: #51483d; }
|
95
|
+
|
96
|
+
.reveal .controls div.navigate-right,
|
97
|
+
.reveal .controls div.navigate-right.enabled {
|
98
|
+
border-left-color: #51483d; }
|
99
|
+
|
100
|
+
.reveal .controls div.navigate-up,
|
101
|
+
.reveal .controls div.navigate-up.enabled {
|
102
|
+
border-bottom-color: #51483d; }
|
103
|
+
|
104
|
+
.reveal .controls div.navigate-down,
|
105
|
+
.reveal .controls div.navigate-down.enabled {
|
106
|
+
border-top-color: #51483d; }
|
107
|
+
|
108
|
+
.reveal .controls div.navigate-left.enabled:hover {
|
109
|
+
border-right-color: #8b7c69; }
|
110
|
+
|
111
|
+
.reveal .controls div.navigate-right.enabled:hover {
|
112
|
+
border-left-color: #8b7c69; }
|
113
|
+
|
114
|
+
.reveal .controls div.navigate-up.enabled:hover {
|
115
|
+
border-bottom-color: #8b7c69; }
|
116
|
+
|
117
|
+
.reveal .controls div.navigate-down.enabled:hover {
|
118
|
+
border-top-color: #8b7c69; }
|
119
|
+
|
120
|
+
/*********************************************
|
121
|
+
* PROGRESS BAR
|
122
|
+
*********************************************/
|
123
|
+
.reveal .progress {
|
124
|
+
background: rgba(0, 0, 0, 0.2); }
|
125
|
+
|
126
|
+
.reveal .progress span {
|
127
|
+
background: #51483d;
|
128
|
+
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
129
|
+
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
130
|
+
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
131
|
+
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
132
|
+
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
133
|
+
|
134
|
+
/*********************************************
|
135
|
+
* SLIDE NUMBER
|
136
|
+
*********************************************/
|
137
|
+
.reveal .slide-number {
|
138
|
+
color: #51483d; }
|
@@ -0,0 +1,138 @@
|
|
1
|
+
@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
|
2
|
+
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
|
3
|
+
/**
|
4
|
+
* A simple theme for reveal.js presentations, similar
|
5
|
+
* to the default theme. The accent color is darkblue.
|
6
|
+
*
|
7
|
+
* This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
|
8
|
+
* reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
|
9
|
+
*/
|
10
|
+
/*********************************************
|
11
|
+
* GLOBAL STYLES
|
12
|
+
*********************************************/
|
13
|
+
body {
|
14
|
+
background: white;
|
15
|
+
background-color: white; }
|
16
|
+
|
17
|
+
.reveal {
|
18
|
+
font-family: "Lato", sans-serif;
|
19
|
+
font-size: 36px;
|
20
|
+
font-weight: normal;
|
21
|
+
letter-spacing: -0.02em;
|
22
|
+
color: black; }
|
23
|
+
|
24
|
+
::selection {
|
25
|
+
color: white;
|
26
|
+
background: rgba(0, 0, 0, 0.99);
|
27
|
+
text-shadow: none; }
|
28
|
+
|
29
|
+
/*********************************************
|
30
|
+
* HEADERS
|
31
|
+
*********************************************/
|
32
|
+
.reveal h1,
|
33
|
+
.reveal h2,
|
34
|
+
.reveal h3,
|
35
|
+
.reveal h4,
|
36
|
+
.reveal h5,
|
37
|
+
.reveal h6 {
|
38
|
+
margin: 0 0 20px 0;
|
39
|
+
color: black;
|
40
|
+
font-family: "News Cycle", Impact, sans-serif;
|
41
|
+
line-height: 0.9em;
|
42
|
+
letter-spacing: 0.02em;
|
43
|
+
text-transform: none;
|
44
|
+
text-shadow: none; }
|
45
|
+
|
46
|
+
.reveal h1 {
|
47
|
+
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
|
48
|
+
|
49
|
+
/*********************************************
|
50
|
+
* LINKS
|
51
|
+
*********************************************/
|
52
|
+
.reveal a:not(.image) {
|
53
|
+
color: darkblue;
|
54
|
+
text-decoration: none;
|
55
|
+
-webkit-transition: color .15s ease;
|
56
|
+
-moz-transition: color .15s ease;
|
57
|
+
-ms-transition: color .15s ease;
|
58
|
+
-o-transition: color .15s ease;
|
59
|
+
transition: color .15s ease; }
|
60
|
+
|
61
|
+
.reveal a:not(.image):hover {
|
62
|
+
color: #0000f1;
|
63
|
+
text-shadow: none;
|
64
|
+
border: none; }
|
65
|
+
|
66
|
+
.reveal .roll span:after {
|
67
|
+
color: #fff;
|
68
|
+
background: #00003f; }
|
69
|
+
|
70
|
+
/*********************************************
|
71
|
+
* IMAGES
|
72
|
+
*********************************************/
|
73
|
+
.reveal section img {
|
74
|
+
margin: 15px 0px;
|
75
|
+
background: rgba(255, 255, 255, 0.12);
|
76
|
+
border: 4px solid black;
|
77
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
78
|
+
-webkit-transition: all .2s linear;
|
79
|
+
-moz-transition: all .2s linear;
|
80
|
+
-ms-transition: all .2s linear;
|
81
|
+
-o-transition: all .2s linear;
|
82
|
+
transition: all .2s linear; }
|
83
|
+
|
84
|
+
.reveal a:hover img {
|
85
|
+
background: rgba(255, 255, 255, 0.2);
|
86
|
+
border-color: darkblue;
|
87
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
|
88
|
+
|
89
|
+
/*********************************************
|
90
|
+
* NAVIGATION CONTROLS
|
91
|
+
*********************************************/
|
92
|
+
.reveal .controls div.navigate-left,
|
93
|
+
.reveal .controls div.navigate-left.enabled {
|
94
|
+
border-right-color: darkblue; }
|
95
|
+
|
96
|
+
.reveal .controls div.navigate-right,
|
97
|
+
.reveal .controls div.navigate-right.enabled {
|
98
|
+
border-left-color: darkblue; }
|
99
|
+
|
100
|
+
.reveal .controls div.navigate-up,
|
101
|
+
.reveal .controls div.navigate-up.enabled {
|
102
|
+
border-bottom-color: darkblue; }
|
103
|
+
|
104
|
+
.reveal .controls div.navigate-down,
|
105
|
+
.reveal .controls div.navigate-down.enabled {
|
106
|
+
border-top-color: darkblue; }
|
107
|
+
|
108
|
+
.reveal .controls div.navigate-left.enabled:hover {
|
109
|
+
border-right-color: #0000f1; }
|
110
|
+
|
111
|
+
.reveal .controls div.navigate-right.enabled:hover {
|
112
|
+
border-left-color: #0000f1; }
|
113
|
+
|
114
|
+
.reveal .controls div.navigate-up.enabled:hover {
|
115
|
+
border-bottom-color: #0000f1; }
|
116
|
+
|
117
|
+
.reveal .controls div.navigate-down.enabled:hover {
|
118
|
+
border-top-color: #0000f1; }
|
119
|
+
|
120
|
+
/*********************************************
|
121
|
+
* PROGRESS BAR
|
122
|
+
*********************************************/
|
123
|
+
.reveal .progress {
|
124
|
+
background: rgba(0, 0, 0, 0.2); }
|
125
|
+
|
126
|
+
.reveal .progress span {
|
127
|
+
background: darkblue;
|
128
|
+
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
129
|
+
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
130
|
+
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
131
|
+
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
132
|
+
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
133
|
+
|
134
|
+
/*********************************************
|
135
|
+
* SLIDE NUMBER
|
136
|
+
*********************************************/
|
137
|
+
.reveal .slide-number {
|
138
|
+
color: darkblue; }
|