jekyll-theme-prettydocs-full 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +7 -0
- data/_data/default/base.yml +8 -0
- data/_data/default/cards.yml +35 -0
- data/_data/default/contact.yml +24 -0
- data/_data/default/faqs.yml +46 -0
- data/_data/default/timeline.yml +33 -0
- data/_includes/_partials/item.html +11 -0
- data/_includes/_partials/post.html +40 -0
- data/_includes/_partials/social-buttons.html +12 -0
- data/_includes/_partials/toc.html +43 -0
- data/_includes/_sections/blog_post.html +50 -0
- data/_includes/_sections/cards.html +25 -0
- data/_includes/_sections/contact.html +29 -0
- data/_includes/_sections/faqs.html +28 -0
- data/_includes/_sections/items-list.html +11 -0
- data/_includes/_sections/not-found.html +11 -0
- data/_includes/_sections/resources.html +68 -0
- data/_includes/_sections/timeline.html +40 -0
- data/_includes/_shower/setup.md +39 -0
- data/_includes/_shower/showerify.html +125 -0
- data/_includes/_theme/footer.html +8 -0
- data/_includes/_theme/head.html +43 -0
- data/_includes/_theme/header.html +36 -0
- data/_includes/_theme/js.html +11 -0
- data/_includes/_utils/common +29 -0
- data/_includes/_utils/picture +18 -0
- data/_layouts/compress.html +9 -0
- data/_layouts/default.html +19 -0
- data/_layouts/faqs.html +9 -0
- data/_layouts/landing.html +18 -0
- data/_layouts/page.html +18 -0
- data/_layouts/post.html +5 -0
- data/_layouts/shower.html +27 -0
- data/_sass/globals/_base.scss +44 -0
- data/_sass/globals/_mixins.scss +175 -0
- data/_sass/partials/_base.scss +108 -0
- data/_sass/partials/_buttons.scss +97 -0
- data/_sass/partials/_cards.scss +170 -0
- data/_sass/partials/_contact.scss +29 -0
- data/_sass/partials/_doc.scss +521 -0
- data/_sass/partials/_footer.scss +9 -0
- data/_sass/partials/_header.scss +87 -0
- data/_sass/partials/_helper.scss +42 -0
- data/_sass/partials/_landing.scss +61 -0
- data/_sass/partials/_post.scss +32 -0
- data/_sass/partials/_resources.scss +10 -0
- data/_sass/partials/_toc.scss +163 -0
- data/_sass/prettydocs-jekyll.scss +20 -0
- data/_sass/vendor/_shower.scss +535 -0
- data/_sass/vendor/_timeline.scss +221 -0
- data/_sass/vendor/shower/defaults.scss +47 -0
- data/_sass/vendor/shower/reset.scss +46 -0
- data/_sass/vendor/shower/screen.scss +549 -0
- data/_sass/vendor/timeline/functions/desaturated-lighten.scss +7 -0
- data/_sass/vendor/timeline/functions/map-deep-get.scss +9 -0
- data/_sass/vendor/timeline/functions/map-set.scss +5 -0
- data/_sass/vendor/timeline/functions/mutate-colors.scss +9 -0
- data/_sass/vendor/timeline/mixins/timeline-element.scss +23 -0
- data/_sass/vendor/timeline/mixins/timeline-event-variant.scss +20 -0
- data/_sass/vendor/timeline/mixins/timeline-item-arrow-color-variant.scss +6 -0
- data/_sass/vendor/timeline/mixins/timeline-item-arrow-size-variant.scss +17 -0
- data/_sass/vendor/timeline/mixins/timeline-item-right-side-position.scss +21 -0
- data/_sass/vendor/timeline/mixins/timeline-item-start-margins.scss +9 -0
- data/_sass/vendor/timeline/mixins/timeline-item-variant.scss +28 -0
- data/_sass/vendor/timeline/mixins/timeline-label-variant.scss +3 -0
- data/_sass/vendor/timeline/mixins/timeline-line-variant.scss +5 -0
- data/_sass/vendor/timeline/mixins/timeline-point-color-variant.scss +4 -0
- data/_sass/vendor/timeline/mixins/timeline-point-size-variant.scss +12 -0
- data/_sass/vendor/timeline/mixins/timeline-responsive-variant.scss +26 -0
- data/_sass/vendor/timeline/mixins/timeline-row-clearfix.scss +10 -0
- data/_sass/vendor/timeline/mixins/timeline-single-column.scss +56 -0
- data/_sass/vendor/timeline/mixins/transform-center.scss +3 -0
- data/_sass/vendor/timeline/variables.scss +90 -0
- data/assets/css/main.scss +4 -0
- data/assets/css/shower.scss +4 -0
- data/assets/images/empty.gif +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/labtocat.png +0 -0
- data/assets/js/main.js +45 -0
- data/assets/plugins/elegant_font/Licensing/gpl_license.txt +339 -0
- data/assets/plugins/elegant_font/Licensing/mit_license.txt +21 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.eot +0 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.svg +1832 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.ttf +0 -0
- data/assets/plugins/elegant_font/css/fonts/ElegantIcons.woff +0 -0
- data/assets/plugins/elegant_font/css/index.html +3019 -0
- data/assets/plugins/elegant_font/css/lte-ie7.js +387 -0
- data/assets/plugins/elegant_font/css/style.css +1159 -0
- data/assets/plugins/elegant_font/images/PNG/arrow-up-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_back.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2dwnn_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-2up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot-up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_carrot_up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_condense.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_condense_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_expand_alt3.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_move.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-down_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-left_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-right_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_triangle-up_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up-down_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/arrow_up_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_adjust-horiz.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_adjust-vert.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_archive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_archive_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_bag.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_bag_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_balance.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_blocked.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_book.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_book_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-checked.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-empty.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_box-selected.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_briefcase.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_briefcase_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_building.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_building_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calculator_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calendar.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_calulator.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_camera.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_camera_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_chat.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_chat_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_check_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_circle-empty.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_circle-slelected.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clipboard.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clock.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_clock_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_close_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-download_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud-upload_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cloud_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cog.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cogs.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_comment.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_comment_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_compass.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_compass_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cone.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cone_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_contacts.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_contacts_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_creditcard.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_currency.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_currency_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cursor.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_cursor_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_datareport.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_datareport_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_desktop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_dislike.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_dislike_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_document.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_document_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_documents.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_documents_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drawer.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drawer_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_drive_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_easel.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_easel_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-circle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-oct.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-oct_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-triangle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_error-triangle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_film.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_floppy.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_floppy_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_flowchart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_flowchart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-add.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-add_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-open.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder-open_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder_download.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_folder_upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_genius.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_gift.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_gift_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe-2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_globe_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_grid-2x2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_grid-3x3.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_group.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_headphones.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_heart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_heart_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_hourglass.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_house.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_house_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id-2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id-2_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_id_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_image.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_images.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_info.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_info_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_key.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_key_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_laptop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lifesaver.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lightbulb.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lightbulb_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_like.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_like_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_link.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_link_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_loading.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock-open.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock-open_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_lock_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mail.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mail_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_map.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_map_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-circle_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu-square_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_menu.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mic.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mic_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus-06.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus-box.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_minus_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mobile.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mug.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_mug_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_music.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ol.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_paperclip.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pause_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil-edit.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil-edit_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pencil_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pens.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pens_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_percent.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_percent_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_phone.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_piechart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pin_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus-box.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_plus_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_printer-alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_printer.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_profile.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pushpin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_pushpin_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_puzzle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_puzzle_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_question_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_quotations_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_refresh.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ribbon.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ribbon_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_rook.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_search_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_shield.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_shield_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star-half.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star-half_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_star_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_stop_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_table.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tablet.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tag.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tag_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tags.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tags_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_target.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tool.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_toolbox.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_toolbox_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_tools.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_trash.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_trash_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_ul.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_upload.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_vol-mute.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_vol-mute_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-high.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-high_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-low.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_volume-low_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_wallet.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_wallet_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-in.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-in_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-out.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/icon_zoom-out_alt.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_blogger_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_delicious_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_deviantart_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_dribbble_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_facebook_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_flickr_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive_alt2.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googledrive_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_googleplus_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_instagram_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_linkedin_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_myspace_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_picassa_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_pinterest_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_rss_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_share_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_skype_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_spotify_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_stumbleupon_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_stumbleupon_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumbleupon.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_tumblr_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_twitter_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_vimeo_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_wordpress_square.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube_circle.png +0 -0
- data/assets/plugins/elegant_font/images/PNG/social_youtube_square.png +0 -0
- data/assets/plugins/elegant_font/images/SVG/arrow-up-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_back.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2dwnn_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-2up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot-up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_carrot_up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_condense.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_condense_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_expand_alt3.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_move.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-down_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-left_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-right_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_triangle-up_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up-down_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/arrow_up_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_adjust-horiz.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_adjust-vert.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_archive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_archive_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_bag.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_bag_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_balance.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_blocked.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_book.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_book_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-checked.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-empty.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_box-selected.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_briefcase.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_briefcase_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_building.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_building_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calculator_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calendar.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_calulator.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_camera.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_camera_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_chat.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_chat_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_check_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_circle-empty.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_circle-slelected.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clipboard.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clock.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_clock_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_close_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-download_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud-upload_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cloud_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cog.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cogs.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_comment.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_comment_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_compass.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_compass_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cone.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cone_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_contacts.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_contacts_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_creditcard.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_currency.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_currency_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cursor.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_cursor_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_datareport.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_datareport_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_desktop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_dislike.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_dislike_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_document.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_document_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_documents.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_documents_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drawer.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drawer_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_drive_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_easel.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_easel_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-circle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-oct.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-oct_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-triangle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_error-triangle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_film.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_floppy.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_floppy_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_flowchart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_flowchart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-add.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-add_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-open.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder-open_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder_download.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_folder_upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_genius.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_gift.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_gift_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe-2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_globe_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_grid-2x2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_grid-3x3.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_group.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_headphones.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_heart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_heart_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_hourglass.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_house.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_house_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id-2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id-2_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_id_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_image.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_images.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_info.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_info_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_key.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_key_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_laptop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lifesaver.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lightbulb.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lightbulb_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_like.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_like_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_link.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_link_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_loading.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock-open.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock-open_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_lock_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mail.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mail_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_map.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_map_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-circle_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-square_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu-square_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_menu.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mic.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mic_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus-06.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus-box.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_minus_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mobile.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mug.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_mug_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_music.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ol.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_paperclip.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pause_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil-edit.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil-edit_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pencil_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pens.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pens_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_percent.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_percent_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_phone.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_piechart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pin_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus-box.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_plus_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_printer-alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_printer.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_profile.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pushpin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_pushpin_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_puzzle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_puzzle_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_question_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_quotations_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_refresh.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ribbon.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ribbon_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_rook.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_search_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_shield.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_shield_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star-half.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star-half_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_star_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_stop_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_table.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tablet.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tag.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tag_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tags.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tags_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_target.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tool.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_toolbox.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_toolbox_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_tools.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_trash.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_trash_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_ul.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_upload.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_vol-mute.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_vol-mute_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-high.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-high_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-low.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_volume-low_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_wallet.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_wallet_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-in.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-in_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-out.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/icon_zoom-out_alt.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_blogger_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_delicious_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_deviantart_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_dribbble_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_facebook_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_flickr_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive_alt2.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googledrive_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_googleplus_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_instagram_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_linkedin_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_myspace_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_picassa_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_pinterest_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_rss_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_share_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_skype_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_spotify_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_stumbleupon_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_stumbleupon_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumbleupon.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_tumblr_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_twitter_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_vimeo_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_wordpress_square.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube_circle.svg +1 -0
- data/assets/plugins/elegant_font/images/SVG/social_youtube_square.svg +1 -0
- data/assets/plugins/prism/min/prism-min.js +2 -0
- data/assets/plugins/prism/prism.css +163 -0
- data/assets/plugins/prism/prism.js +18 -0
- metadata +929 -0
| @@ -0,0 +1,221 @@ | |
| 1 | 
            +
            @import "timeline/variables";
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            @import "timeline/mixins/timeline-element";
         | 
| 4 | 
            +
            @import "timeline/mixins/timeline-event-variant";
         | 
| 5 | 
            +
            @import "timeline/mixins/timeline-item-variant";
         | 
| 6 | 
            +
            @import "timeline/mixins/timeline-label-variant";
         | 
| 7 | 
            +
            @import "timeline/mixins/timeline-line-variant";
         | 
| 8 | 
            +
            @import "timeline/mixins/timeline-point-color-variant";
         | 
| 9 | 
            +
            @import "timeline/mixins/timeline-point-size-variant";
         | 
| 10 | 
            +
            @import "timeline/mixins/timeline-responsive-variant";
         | 
| 11 | 
            +
            @import "timeline/mixins/timeline-row-clearfix";
         | 
| 12 | 
            +
            @import "timeline/mixins/timeline-single-column";
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            .timeline {
         | 
| 15 | 
            +
              @extend .timeline-line-solid;
         | 
| 16 | 
            +
              @include timeline-responsive-variant($timeline-item-width-offset, 0, 0, $timeline-item-width-offset);
         | 
| 17 | 
            +
              @include timeline-row-clearfix;
         | 
| 18 | 
            +
             | 
| 19 | 
            +
              position: relative;
         | 
| 20 | 
            +
             | 
| 21 | 
            +
              padding: map-get($timeline-container-paddings, vertical) map-get($timeline-container-paddings, horizontal);
         | 
| 22 | 
            +
             | 
| 23 | 
            +
              list-style: none;
         | 
| 24 | 
            +
              font-weight: 300;
         | 
| 25 | 
            +
             | 
| 26 | 
            +
              &:before {
         | 
| 27 | 
            +
                content: "";
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                position: absolute;
         | 
| 30 | 
            +
             | 
| 31 | 
            +
                top: 0;
         | 
| 32 | 
            +
                left: 0;
         | 
| 33 | 
            +
                bottom: 0;
         | 
| 34 | 
            +
             | 
| 35 | 
            +
                width: 50%;
         | 
| 36 | 
            +
                height: 100% !important;
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                margin-left: map-get($timeline-line, width) / 2;
         | 
| 39 | 
            +
             | 
| 40 | 
            +
                border-right: {
         | 
| 41 | 
            +
                  width: map-get($timeline-line, width);
         | 
| 42 | 
            +
                  style: solid;
         | 
| 43 | 
            +
                  color: map-get($timeline-line, color)
         | 
| 44 | 
            +
                }
         | 
| 45 | 
            +
              }
         | 
| 46 | 
            +
             | 
| 47 | 
            +
              &.timeline-single-column {
         | 
| 48 | 
            +
                @include timeline-single-column($timeline-single-column-breakpoint);
         | 
| 49 | 
            +
              }
         | 
| 50 | 
            +
             | 
| 51 | 
            +
              @each $type, $style in map-get($timeline-line, styles) {
         | 
| 52 | 
            +
                &.timeline-line-#{$type} {
         | 
| 53 | 
            +
                  @include timeline-line-variant($style);
         | 
| 54 | 
            +
                }
         | 
| 55 | 
            +
              }
         | 
| 56 | 
            +
             | 
| 57 | 
            +
              & .timeline-item {
         | 
| 58 | 
            +
                @extend .timeline-item-arrow-md;
         | 
| 59 | 
            +
                @include timeline-element;
         | 
| 60 | 
            +
             | 
| 61 | 
            +
                margin-bottom: $timeline-item-margin-bottom;
         | 
| 62 | 
            +
             | 
| 63 | 
            +
                &:nth-of-type(2) {
         | 
| 64 | 
            +
                  margin-top: $timeline-second-item-margin-top;
         | 
| 65 | 
            +
                }
         | 
| 66 | 
            +
             | 
| 67 | 
            +
                &.timeline-item-left, &.timeline-item-right {
         | 
| 68 | 
            +
                  @include timeline-item-start-margins(0, $timeline-second-item-margin-top);
         | 
| 69 | 
            +
             | 
| 70 | 
            +
                  clear: both !important;
         | 
| 71 | 
            +
             | 
| 72 | 
            +
                  & + .timeline-item:not(.timeline-item-left):not(.timeline-item-right) {
         | 
| 73 | 
            +
                    clear: both;
         | 
| 74 | 
            +
                  }
         | 
| 75 | 
            +
                }
         | 
| 76 | 
            +
             | 
| 77 | 
            +
                &.timeline-item-right, &:nth-of-type(even):not(.timeline-item-left) {
         | 
| 78 | 
            +
                  float: right;
         | 
| 79 | 
            +
                  clear: right;
         | 
| 80 | 
            +
             | 
| 81 | 
            +
                  & > .timeline-point {
         | 
| 82 | 
            +
                    left: -$timeline-point-width;
         | 
| 83 | 
            +
             | 
| 84 | 
            +
                    &.timeline-point-blank {
         | 
| 85 | 
            +
                      left: -$timeline-point-blank-width;
         | 
| 86 | 
            +
                    }
         | 
| 87 | 
            +
                  }
         | 
| 88 | 
            +
                }
         | 
| 89 | 
            +
             | 
| 90 | 
            +
                @each $size, $style in $timeline-item-arrow {
         | 
| 91 | 
            +
                  &.timeline-item-arrow-#{$size} {
         | 
| 92 | 
            +
                    @include timeline-item-variant(map-get($style, offset-top), map-get($style, width));
         | 
| 93 | 
            +
                  }
         | 
| 94 | 
            +
                }
         | 
| 95 | 
            +
             | 
| 96 | 
            +
                & > .timeline-event {
         | 
| 97 | 
            +
                  @extend .timeline-event-default;
         | 
| 98 | 
            +
             | 
| 99 | 
            +
                  position: relative;
         | 
| 100 | 
            +
                  float: left;
         | 
| 101 | 
            +
             | 
| 102 | 
            +
                  border-radius: $timeline-item-border-radius;
         | 
| 103 | 
            +
             | 
| 104 | 
            +
                  @each $status, $color in $timeline-colors {
         | 
| 105 | 
            +
                    &.timeline-event-#{$status} {
         | 
| 106 | 
            +
                      @include timeline-event-variant(
         | 
| 107 | 
            +
                              map-get($timeline-bg-colors, $status),
         | 
| 108 | 
            +
                              map-get($timeline-desaturated-colors, $status),
         | 
| 109 | 
            +
                              map-get($timeline-colors, $status)
         | 
| 110 | 
            +
                      );
         | 
| 111 | 
            +
                    }
         | 
| 112 | 
            +
                  }
         | 
| 113 | 
            +
             | 
| 114 | 
            +
                  &:before, &:after {
         | 
| 115 | 
            +
                    content: "";
         | 
| 116 | 
            +
             | 
| 117 | 
            +
                    display: inline-block;
         | 
| 118 | 
            +
                    position: absolute;
         | 
| 119 | 
            +
                  }
         | 
| 120 | 
            +
             | 
| 121 | 
            +
                  & .timeline-heading, & .timeline-body, & .timeline-footer {
         | 
| 122 | 
            +
                    padding: map-get($timeline-item-inner-padding, verical) map-get($timeline-item-inner-padding, horizontal);
         | 
| 123 | 
            +
             | 
| 124 | 
            +
                    & p, & ul {
         | 
| 125 | 
            +
                      margin-bottom: 0;
         | 
| 126 | 
            +
                    }
         | 
| 127 | 
            +
                  }
         | 
| 128 | 
            +
             | 
| 129 | 
            +
                  & .timeline-heading {
         | 
| 130 | 
            +
                    & h4 {
         | 
| 131 | 
            +
                      font-weight: 400;
         | 
| 132 | 
            +
                    }
         | 
| 133 | 
            +
                  }
         | 
| 134 | 
            +
             | 
| 135 | 
            +
                  & .timeline-footer {
         | 
| 136 | 
            +
                    & a {
         | 
| 137 | 
            +
                      cursor: pointer;
         | 
| 138 | 
            +
                      text-decoration: none;
         | 
| 139 | 
            +
                    }
         | 
| 140 | 
            +
                  }
         | 
| 141 | 
            +
             | 
| 142 | 
            +
                  & .panel, & .table, & .blankslate {
         | 
| 143 | 
            +
                    margin: 0;
         | 
| 144 | 
            +
             | 
| 145 | 
            +
                    border: none;
         | 
| 146 | 
            +
                    border-radius: inherit;
         | 
| 147 | 
            +
             | 
| 148 | 
            +
                    overflow: hidden;
         | 
| 149 | 
            +
                  }
         | 
| 150 | 
            +
             | 
| 151 | 
            +
                  & .table {
         | 
| 152 | 
            +
                    & th {
         | 
| 153 | 
            +
                      border-top: 0;
         | 
| 154 | 
            +
                    }
         | 
| 155 | 
            +
                  }
         | 
| 156 | 
            +
                }
         | 
| 157 | 
            +
             | 
| 158 | 
            +
                & > .timeline-point {
         | 
| 159 | 
            +
                  @extend .timeline-point-default;
         | 
| 160 | 
            +
                  @include timeline-point-size-variant($timeline-point-width, $timeline-point-height);
         | 
| 161 | 
            +
             | 
| 162 | 
            +
                  position: absolute;
         | 
| 163 | 
            +
                  z-index: 100;
         | 
| 164 | 
            +
             | 
| 165 | 
            +
                  border: {
         | 
| 166 | 
            +
                    width: $timeline-point-border-width;
         | 
| 167 | 
            +
                    style: solid;
         | 
| 168 | 
            +
                    radius: 100%
         | 
| 169 | 
            +
                  }
         | 
| 170 | 
            +
             | 
| 171 | 
            +
                  line-height: $timeline-point-height - ($timeline-point-border-width * 2);
         | 
| 172 | 
            +
                  text-align: center;
         | 
| 173 | 
            +
             | 
| 174 | 
            +
                  &.timeline-point-blank {
         | 
| 175 | 
            +
                    @include timeline-point-size-variant($timeline-point-blank-width, $timeline-point-blank-height);
         | 
| 176 | 
            +
                    @include timeline-point-color-variant(map-get($timeline-desaturated-colors, default), map-get($timeline-desaturated-colors, default));
         | 
| 177 | 
            +
                  }
         | 
| 178 | 
            +
             | 
| 179 | 
            +
                  @each $status, $color in $timeline-colors {
         | 
| 180 | 
            +
                    &.timeline-point-#{$status} {
         | 
| 181 | 
            +
                      @include timeline-point-color-variant(map-get($timeline-bg-colors, default), map-get($timeline-desaturated-colors, $status));
         | 
| 182 | 
            +
                    }
         | 
| 183 | 
            +
                  }
         | 
| 184 | 
            +
                }
         | 
| 185 | 
            +
              }
         | 
| 186 | 
            +
             | 
| 187 | 
            +
              & .timeline-label {
         | 
| 188 | 
            +
                @include timeline-element;
         | 
| 189 | 
            +
                @include timeline-item-start-margins(0, $timeline-second-item-margin-top);
         | 
| 190 | 
            +
             | 
| 191 | 
            +
                top: 1px;
         | 
| 192 | 
            +
             | 
| 193 | 
            +
                width: 100%;
         | 
| 194 | 
            +
             | 
| 195 | 
            +
                margin: {
         | 
| 196 | 
            +
                  left: auto;
         | 
| 197 | 
            +
                  right: auto;
         | 
| 198 | 
            +
                }
         | 
| 199 | 
            +
                padding: 0;
         | 
| 200 | 
            +
             | 
| 201 | 
            +
                text-align: center;
         | 
| 202 | 
            +
             | 
| 203 | 
            +
                @each $status, $color in $timeline-colors {
         | 
| 204 | 
            +
                  & .label-#{$status} {
         | 
| 205 | 
            +
                    @include timeline-label-variant(map-get($timeline-desaturated-colors, $status));
         | 
| 206 | 
            +
                  }
         | 
| 207 | 
            +
                }
         | 
| 208 | 
            +
              }
         | 
| 209 | 
            +
            }
         | 
| 210 | 
            +
             | 
| 211 | 
            +
            @media all and (orientation: portrait) {
         | 
| 212 | 
            +
              .timeline {
         | 
| 213 | 
            +
                @include timeline-single-column;
         | 
| 214 | 
            +
              }
         | 
| 215 | 
            +
            }
         | 
| 216 | 
            +
             | 
| 217 | 
            +
            @media (max-width: $timeline-single-column-breakpoint) {
         | 
| 218 | 
            +
              .timeline {
         | 
| 219 | 
            +
                @include timeline-single-column;
         | 
| 220 | 
            +
              }
         | 
| 221 | 
            +
            }
         | 
| @@ -0,0 +1,47 @@ | |
| 1 | 
            +
            // Bright theme for Shower HTML presentation engine: github.com/shower/shower
         | 
| 2 | 
            +
            // Copyright © 2010–2015 Vadim Makeev, pepelsbey.net
         | 
| 3 | 
            +
            // Licensed under MIT license: github.com/shower/shower/wiki/MIT-License
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            // Layout
         | 
| 6 | 
            +
            $width:1024px;  // Slide width, permanent in most cases
         | 
| 7 | 
            +
            $height:640px;  // Slide height, 640px for 16:10, 768px for 4:3
         | 
| 8 | 
            +
            $top:100px;     // Top padding above slide content
         | 
| 9 | 
            +
            $left:128px;    // Left slide content padding
         | 
| 10 | 
            +
            $right:96px;    // Right slide content padding
         | 
| 11 | 
            +
            $break:1180px;  // Window width for small thumbnails to appear
         | 
| 12 | 
            +
            $ratio:'16x10'; // Available options: '16x10' or '4x3'
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            // Colors
         | 
| 15 | 
            +
            $color:#52A2DF;
         | 
| 16 | 
            +
            $yellow:#FAFAC4;
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            // Mixins
         | 
| 19 | 
            +
            @mixin retina {
         | 
| 20 | 
            +
            	@media (-webkit-min-device-pixel-ratio:2), (min-resolution:192dpi) {
         | 
| 21 | 
            +
            		@content;
         | 
| 22 | 
            +
            		}
         | 
| 23 | 
            +
            	}
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            // Underline
         | 
| 26 | 
            +
            @mixin underline($color, $width) {
         | 
| 27 | 
            +
            	background:
         | 
| 28 | 
            +
            		linear-gradient(
         | 
| 29 | 
            +
            			to top,
         | 
| 30 | 
            +
            			$color,
         | 
| 31 | 
            +
            			$color #{$width}em,
         | 
| 32 | 
            +
            			transparent #{$width}em,
         | 
| 33 | 
            +
            			transparent
         | 
| 34 | 
            +
            		) repeat-x;
         | 
| 35 | 
            +
            	}
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            // Offscreen
         | 
| 38 | 
            +
            @mixin offscreen {
         | 
| 39 | 
            +
            	position:absolute;
         | 
| 40 | 
            +
            	clip:rect(0 0 0 0);
         | 
| 41 | 
            +
            	overflow:hidden;
         | 
| 42 | 
            +
            	margin:-1px;
         | 
| 43 | 
            +
            	padding:0;
         | 
| 44 | 
            +
            	width:1px;
         | 
| 45 | 
            +
            	height:1px;
         | 
| 46 | 
            +
            	border:none;
         | 
| 47 | 
            +
            	}
         | 
| @@ -0,0 +1,46 @@ | |
| 1 | 
            +
            // http://meyerweb.com/eric/tools/css/reset/
         | 
| 2 | 
            +
            // v2.0 | 20110126
         | 
| 3 | 
            +
            // License: none (public domain)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            html, body, div, span, applet, object, iframe,
         | 
| 6 | 
            +
            h1, h2, h3, h4, h5, h6, p, blockquote, pre,
         | 
| 7 | 
            +
            a, abbr, acronym, address, big, cite, code,
         | 
| 8 | 
            +
            del, dfn, em, img, ins, kbd, q, s, samp,
         | 
| 9 | 
            +
            small, strike, strong, sub, sup, tt, var,
         | 
| 10 | 
            +
            b, u, i, center,
         | 
| 11 | 
            +
            dl, dt, dd, ol, ul, li,
         | 
| 12 | 
            +
            fieldset, form, label, legend,
         | 
| 13 | 
            +
            table, caption, tbody, tfoot, thead, tr, th, td,
         | 
| 14 | 
            +
            article, aside, canvas, details, embed,
         | 
| 15 | 
            +
            figure, figcaption, footer, header, hgroup,
         | 
| 16 | 
            +
            menu, nav, output, ruby, section, summary,
         | 
| 17 | 
            +
            time, mark, audio, video {
         | 
| 18 | 
            +
            	margin:0;
         | 
| 19 | 
            +
            	padding:0;
         | 
| 20 | 
            +
            	border:0;
         | 
| 21 | 
            +
            	font-size:100%;
         | 
| 22 | 
            +
            	font:inherit;
         | 
| 23 | 
            +
            	vertical-align:baseline;
         | 
| 24 | 
            +
            	}
         | 
| 25 | 
            +
            article, aside, details, figcaption, figure,
         | 
| 26 | 
            +
            footer, header, hgroup, menu, nav, section {
         | 
| 27 | 
            +
            	display:block;
         | 
| 28 | 
            +
            	}
         | 
| 29 | 
            +
            body {
         | 
| 30 | 
            +
            	line-height:1;
         | 
| 31 | 
            +
            	}
         | 
| 32 | 
            +
            ol, ul {
         | 
| 33 | 
            +
            	list-style:none;
         | 
| 34 | 
            +
            	}
         | 
| 35 | 
            +
            blockquote, q {
         | 
| 36 | 
            +
            	quotes:none;
         | 
| 37 | 
            +
            	}
         | 
| 38 | 
            +
            blockquote:before, blockquote:after,
         | 
| 39 | 
            +
            q:before, q:after {
         | 
| 40 | 
            +
            	content:'';
         | 
| 41 | 
            +
            	content:none;
         | 
| 42 | 
            +
            	}
         | 
| 43 | 
            +
            table {
         | 
| 44 | 
            +
            	border-collapse:collapse;
         | 
| 45 | 
            +
            	border-spacing:0;
         | 
| 46 | 
            +
            	}
         | 
| @@ -0,0 +1,549 @@ | |
| 1 | 
            +
            // Bright theme for Shower HTML presentation engine: github.com/shower/shower
         | 
| 2 | 
            +
            // Copyright © 2010–2015 Vadim Makeev, pepelsbey.net
         | 
| 3 | 
            +
            // Licensed under MIT license: github.com/shower/shower/wiki/MIT-License
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            @import 'defaults';
         | 
| 6 | 
            +
            @import 'fonts';
         | 
| 7 | 
            +
            @import 'reset';
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            .shower {
         | 
| 10 | 
            +
            	counter-reset:slide;
         | 
| 11 | 
            +
            	font:24px/2 'Open Sans', sans-serif;
         | 
| 12 | 
            +
            	@media print {
         | 
| 13 | 
            +
            		text-rendering:geometricPrecision;
         | 
| 14 | 
            +
            		}
         | 
| 15 | 
            +
            	a {
         | 
| 16 | 
            +
            		color:$color;
         | 
| 17 | 
            +
            		@include underline(currentColor, 0.09);
         | 
| 18 | 
            +
            		text-decoration:none;
         | 
| 19 | 
            +
            		}
         | 
| 20 | 
            +
            	}
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            // Caption
         | 
| 23 | 
            +
            // -------------------------------
         | 
| 24 | 
            +
            .caption {
         | 
| 25 | 
            +
            	display:none;
         | 
| 26 | 
            +
            	margin:0 0 60px;
         | 
| 27 | 
            +
            	padding:0 50px 0 0;
         | 
| 28 | 
            +
            	color:#555;
         | 
| 29 | 
            +
            	h1 {
         | 
| 30 | 
            +
            		font:50px 'Open Sans Light', sans-serif;
         | 
| 31 | 
            +
            		}
         | 
| 32 | 
            +
            	}
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            // Badge
         | 
| 35 | 
            +
            // -------------------------------
         | 
| 36 | 
            +
            .badge {
         | 
| 37 | 
            +
            	position:absolute;
         | 
| 38 | 
            +
            	top:0;
         | 
| 39 | 
            +
            	right:0;
         | 
| 40 | 
            +
            	display:none;
         | 
| 41 | 
            +
            	overflow:hidden;
         | 
| 42 | 
            +
            	visibility:hidden;
         | 
| 43 | 
            +
            	width:11em;
         | 
| 44 | 
            +
            	height:11em;
         | 
| 45 | 
            +
            	line-height:2.5;
         | 
| 46 | 
            +
            	font-size:15px;
         | 
| 47 | 
            +
            	}
         | 
| 48 | 
            +
            	.badge a {
         | 
| 49 | 
            +
            		position:absolute;
         | 
| 50 | 
            +
            		bottom:50%;
         | 
| 51 | 
            +
            		right:-50%;
         | 
| 52 | 
            +
            		left:-50%;
         | 
| 53 | 
            +
            		visibility:visible;
         | 
| 54 | 
            +
            		background:$color;
         | 
| 55 | 
            +
            		color:#FFF;
         | 
| 56 | 
            +
            		text-align:center;
         | 
| 57 | 
            +
            		transform-origin:50% 100%;
         | 
| 58 | 
            +
            		transform:rotate(45deg) translateY(-1em);
         | 
| 59 | 
            +
            		}
         | 
| 60 | 
            +
             | 
| 61 | 
            +
            // Region
         | 
| 62 | 
            +
            // -------------------------------
         | 
| 63 | 
            +
            .region {
         | 
| 64 | 
            +
            	display:none;
         | 
| 65 | 
            +
            	}
         | 
| 66 | 
            +
             | 
| 67 | 
            +
            // Slide
         | 
| 68 | 
            +
            // -------------------------------
         | 
| 69 | 
            +
            .slide {
         | 
| 70 | 
            +
            	position:relative;
         | 
| 71 | 
            +
            	width:$width;
         | 
| 72 | 
            +
            	height:$height;
         | 
| 73 | 
            +
            	background:#FFF;
         | 
| 74 | 
            +
            	color:#000;
         | 
| 75 | 
            +
            	-webkit-print-color-adjust:exact;
         | 
| 76 | 
            +
            	-webkit-text-size-adjust:none;
         | 
| 77 | 
            +
            	-moz-text-size-adjust:none;
         | 
| 78 | 
            +
            	-ms-text-size-adjust:none;
         | 
| 79 | 
            +
            	@media print {
         | 
| 80 | 
            +
            		page-break-before:always;
         | 
| 81 | 
            +
            		}
         | 
| 82 | 
            +
            	// Number
         | 
| 83 | 
            +
            	&:after {
         | 
| 84 | 
            +
            		position:absolute;
         | 
| 85 | 
            +
            		right:0;
         | 
| 86 | 
            +
            		bottom:45px;
         | 
| 87 | 
            +
            		left:0;
         | 
| 88 | 
            +
            		color:#AAA;
         | 
| 89 | 
            +
            		counter-increment:slide;
         | 
| 90 | 
            +
            		content:counter(slide);
         | 
| 91 | 
            +
            		text-align:center;
         | 
| 92 | 
            +
            		line-height:1;
         | 
| 93 | 
            +
            		}
         | 
| 94 | 
            +
            	// Inner
         | 
| 95 | 
            +
            	> div {
         | 
| 96 | 
            +
            		position:absolute;
         | 
| 97 | 
            +
            		top:0;
         | 
| 98 | 
            +
            		left:0;
         | 
| 99 | 
            +
            		overflow:hidden;
         | 
| 100 | 
            +
            		padding:$top $right 0 $left;
         | 
| 101 | 
            +
            		width:$width - $left - $right;
         | 
| 102 | 
            +
            		height:$height - $top;
         | 
| 103 | 
            +
            		}
         | 
| 104 | 
            +
            	}
         | 
| 105 | 
            +
             | 
| 106 | 
            +
            // Elements
         | 
| 107 | 
            +
            // -------------------------------
         | 
| 108 | 
            +
            .slide {
         | 
| 109 | 
            +
            	// Header
         | 
| 110 | 
            +
            	h2 {
         | 
| 111 | 
            +
            		margin:0 0 58px;
         | 
| 112 | 
            +
            		font:48px/1 'Open Sans Light', sans-serif;
         | 
| 113 | 
            +
            		}
         | 
| 114 | 
            +
            	// Text
         | 
| 115 | 
            +
            	p {
         | 
| 116 | 
            +
            		margin:0 0 48px;
         | 
| 117 | 
            +
            		}
         | 
| 118 | 
            +
            	p.note {
         | 
| 119 | 
            +
            		color:#AAA;
         | 
| 120 | 
            +
            		}
         | 
| 121 | 
            +
            	b, strong {
         | 
| 122 | 
            +
            		font-weight:bold;
         | 
| 123 | 
            +
            		}
         | 
| 124 | 
            +
            	i, em {
         | 
| 125 | 
            +
            		font-style:italic;
         | 
| 126 | 
            +
            		}
         | 
| 127 | 
            +
            	code, kbd, samp {
         | 
| 128 | 
            +
            		padding:5px 7px 1px;
         | 
| 129 | 
            +
            		background:rgba(#000, 0.08);
         | 
| 130 | 
            +
            		color:#000;
         | 
| 131 | 
            +
            		line-height:1;
         | 
| 132 | 
            +
            		font-family:'Anka Coder', monospace;
         | 
| 133 | 
            +
            		}
         | 
| 134 | 
            +
            	mark {
         | 
| 135 | 
            +
            		padding:2px 7px;
         | 
| 136 | 
            +
            		background:$yellow;
         | 
| 137 | 
            +
            		color:#000;
         | 
| 138 | 
            +
            		}
         | 
| 139 | 
            +
            	sub, sup {
         | 
| 140 | 
            +
            		position: relative;
         | 
| 141 | 
            +
            		line-height:0;
         | 
| 142 | 
            +
            		font-size:75%;
         | 
| 143 | 
            +
            		}
         | 
| 144 | 
            +
            	sub {
         | 
| 145 | 
            +
            		bottom:-0.25em;
         | 
| 146 | 
            +
            		}
         | 
| 147 | 
            +
            	sup {
         | 
| 148 | 
            +
            		top:-0.5em;
         | 
| 149 | 
            +
            		}
         | 
| 150 | 
            +
            	// Quote
         | 
| 151 | 
            +
            	blockquote {
         | 
| 152 | 
            +
            		font-style:italic;
         | 
| 153 | 
            +
            		&:before {
         | 
| 154 | 
            +
            			position:absolute;
         | 
| 155 | 
            +
            			margin:-49px 0 0 -100px;
         | 
| 156 | 
            +
            			color:#DDD;
         | 
| 157 | 
            +
            			content:'\201C';
         | 
| 158 | 
            +
            			line-height:1;
         | 
| 159 | 
            +
            			font-size:200px;
         | 
| 160 | 
            +
            			}
         | 
| 161 | 
            +
            		& + figcaption {
         | 
| 162 | 
            +
            			margin:-48px 0 48px;
         | 
| 163 | 
            +
            			font-style:italic;
         | 
| 164 | 
            +
            			font-weight:bold;
         | 
| 165 | 
            +
            			}
         | 
| 166 | 
            +
            		}
         | 
| 167 | 
            +
            	// Lists
         | 
| 168 | 
            +
            	ol, ul {
         | 
| 169 | 
            +
            		margin:0 0 48px;
         | 
| 170 | 
            +
            		counter-reset:list;
         | 
| 171 | 
            +
            		li {
         | 
| 172 | 
            +
            			text-indent:-2em;
         | 
| 173 | 
            +
            			&:before {
         | 
| 174 | 
            +
            				display:inline-block;
         | 
| 175 | 
            +
            				width:2em;
         | 
| 176 | 
            +
            				color:#AAA;
         | 
| 177 | 
            +
            				text-align:right;
         | 
| 178 | 
            +
            				}
         | 
| 179 | 
            +
            			}
         | 
| 180 | 
            +
            		ol, ul {
         | 
| 181 | 
            +
            			margin:0 0 0 2em;
         | 
| 182 | 
            +
            			}
         | 
| 183 | 
            +
            		}
         | 
| 184 | 
            +
            	ul > li:before {
         | 
| 185 | 
            +
            		content:'\2022\00A0\00A0\2009';
         | 
| 186 | 
            +
            		}
         | 
| 187 | 
            +
            	ul > li:lang(ru):before {
         | 
| 188 | 
            +
            		content:'\2014\00A0\2009';
         | 
| 189 | 
            +
            		}
         | 
| 190 | 
            +
            	ol > li:before {
         | 
| 191 | 
            +
            		counter-increment:list;
         | 
| 192 | 
            +
            		content:counter(list)'.\00A0\2009';
         | 
| 193 | 
            +
            		}
         | 
| 194 | 
            +
            	// Code
         | 
| 195 | 
            +
            	pre {
         | 
| 196 | 
            +
            		margin:0 0 45px;
         | 
| 197 | 
            +
            		padding:3px 0 0;
         | 
| 198 | 
            +
            		counter-reset:code;
         | 
| 199 | 
            +
            		white-space:normal;
         | 
| 200 | 
            +
            		tab-size:4;
         | 
| 201 | 
            +
            		code {
         | 
| 202 | 
            +
            			display:block;
         | 
| 203 | 
            +
            			padding:0;
         | 
| 204 | 
            +
            			background:none;
         | 
| 205 | 
            +
            			white-space:pre;
         | 
| 206 | 
            +
            			line-height:2;
         | 
| 207 | 
            +
            			&:before {
         | 
| 208 | 
            +
            				position:absolute;
         | 
| 209 | 
            +
            				margin-left:-50px;
         | 
| 210 | 
            +
            				color:#AAA;
         | 
| 211 | 
            +
            				counter-increment:code;
         | 
| 212 | 
            +
            				content:counter(code, decimal-leading-zero)'.';
         | 
| 213 | 
            +
            				}
         | 
| 214 | 
            +
            			&:only-child:before {
         | 
| 215 | 
            +
            				content:'';
         | 
| 216 | 
            +
            				}
         | 
| 217 | 
            +
            			}
         | 
| 218 | 
            +
            		// Mark
         | 
| 219 | 
            +
            		mark {
         | 
| 220 | 
            +
            			padding:5px 7px 1px;
         | 
| 221 | 
            +
            			&.important {
         | 
| 222 | 
            +
            				background:$color;
         | 
| 223 | 
            +
            				color:#FFF;
         | 
| 224 | 
            +
            				}
         | 
| 225 | 
            +
            			&.comment {
         | 
| 226 | 
            +
            				padding:0;
         | 
| 227 | 
            +
            				background:none;
         | 
| 228 | 
            +
            				color:#AAA;
         | 
| 229 | 
            +
            				}
         | 
| 230 | 
            +
            			}
         | 
| 231 | 
            +
            		}
         | 
| 232 | 
            +
            	// Table
         | 
| 233 | 
            +
            	table {
         | 
| 234 | 
            +
            		margin:0 0 50px;
         | 
| 235 | 
            +
            		width:100%;
         | 
| 236 | 
            +
            		border-collapse:collapse;
         | 
| 237 | 
            +
            		border-spacing:0;
         | 
| 238 | 
            +
            		th, td {
         | 
| 239 | 
            +
            			@include underline($color, 0.055);
         | 
| 240 | 
            +
            			}
         | 
| 241 | 
            +
            		th {
         | 
| 242 | 
            +
            			text-align:left;
         | 
| 243 | 
            +
            			font-weight:bold;
         | 
| 244 | 
            +
            			}
         | 
| 245 | 
            +
            		&.striped {
         | 
| 246 | 
            +
            			tr:nth-child(even) {
         | 
| 247 | 
            +
            				background:mix($color, #FFF, 8%);
         | 
| 248 | 
            +
            				}
         | 
| 249 | 
            +
            			}
         | 
| 250 | 
            +
            		}
         | 
| 251 | 
            +
            	// Cover Shout
         | 
| 252 | 
            +
            	&.cover,
         | 
| 253 | 
            +
            	&.shout {
         | 
| 254 | 
            +
            		z-index:1;
         | 
| 255 | 
            +
            		&:after {
         | 
| 256 | 
            +
            			content:'';
         | 
| 257 | 
            +
            			}
         | 
| 258 | 
            +
            		}
         | 
| 259 | 
            +
            	// Cover
         | 
| 260 | 
            +
            	&.cover {
         | 
| 261 | 
            +
            		background:#000;
         | 
| 262 | 
            +
            		@mixin cover {
         | 
| 263 | 
            +
            			img, svg, video,
         | 
| 264 | 
            +
            			object, canvas, iframe {
         | 
| 265 | 
            +
            				@content;
         | 
| 266 | 
            +
            				}
         | 
| 267 | 
            +
            			}
         | 
| 268 | 
            +
            		@include cover {
         | 
| 269 | 
            +
            			position:absolute;
         | 
| 270 | 
            +
            			top:0;
         | 
| 271 | 
            +
            			left:0;
         | 
| 272 | 
            +
            			z-index:-1;
         | 
| 273 | 
            +
            			}
         | 
| 274 | 
            +
            		&.w {
         | 
| 275 | 
            +
            			@include cover {
         | 
| 276 | 
            +
            				top:50%;
         | 
| 277 | 
            +
            				width:100%;
         | 
| 278 | 
            +
            				transform:translateY(-50%);
         | 
| 279 | 
            +
            				}
         | 
| 280 | 
            +
            			}
         | 
| 281 | 
            +
            		&.h {
         | 
| 282 | 
            +
            			@include cover {
         | 
| 283 | 
            +
            				left:50%;
         | 
| 284 | 
            +
            				height:100%;
         | 
| 285 | 
            +
            				transform:translateX(-50%);
         | 
| 286 | 
            +
            				}
         | 
| 287 | 
            +
            			}
         | 
| 288 | 
            +
            		&.w.h {
         | 
| 289 | 
            +
            			@include cover {
         | 
| 290 | 
            +
            				top:0;
         | 
| 291 | 
            +
            				left:0;
         | 
| 292 | 
            +
            				transform:none;
         | 
| 293 | 
            +
            				}
         | 
| 294 | 
            +
            			}
         | 
| 295 | 
            +
            		}
         | 
| 296 | 
            +
            	// Shout
         | 
| 297 | 
            +
            	&.shout {
         | 
| 298 | 
            +
            		background:$color;
         | 
| 299 | 
            +
            		h2 {
         | 
| 300 | 
            +
            			position:absolute;
         | 
| 301 | 
            +
            			top:50%;
         | 
| 302 | 
            +
            			left:128px;
         | 
| 303 | 
            +
            			right:96px;
         | 
| 304 | 
            +
            			color:#FFF;
         | 
| 305 | 
            +
            			font-size:100px;
         | 
| 306 | 
            +
            			transform:translateY(-50%);
         | 
| 307 | 
            +
            			a {
         | 
| 308 | 
            +
            				@include underline(currentColor, 0.055);
         | 
| 309 | 
            +
            				color:#FFF;
         | 
| 310 | 
            +
            				}
         | 
| 311 | 
            +
            			}
         | 
| 312 | 
            +
            		}
         | 
| 313 | 
            +
            	// Place
         | 
| 314 | 
            +
            	.place {
         | 
| 315 | 
            +
            		position:absolute;
         | 
| 316 | 
            +
            		top:50%;
         | 
| 317 | 
            +
            		left:50%;
         | 
| 318 | 
            +
            		transform:translate(-50%, -50%);
         | 
| 319 | 
            +
            		&.t.l, &.t.r, &.b.r, &.b.l {
         | 
| 320 | 
            +
            			transform:none;
         | 
| 321 | 
            +
            			}
         | 
| 322 | 
            +
            		&.t, &.b {
         | 
| 323 | 
            +
            			transform:translate(-50%, 0);
         | 
| 324 | 
            +
            			}
         | 
| 325 | 
            +
            		&.l, &.r {
         | 
| 326 | 
            +
            			transform:translate(0, -50%);
         | 
| 327 | 
            +
            			}
         | 
| 328 | 
            +
            		&.t, &.t.l, &.t.r {
         | 
| 329 | 
            +
            			top:0;
         | 
| 330 | 
            +
            			}
         | 
| 331 | 
            +
            		&.r {
         | 
| 332 | 
            +
            			right:0;
         | 
| 333 | 
            +
            			left:auto;
         | 
| 334 | 
            +
            			}
         | 
| 335 | 
            +
            		&.b, &.b.r, &.b.l {
         | 
| 336 | 
            +
            			top:auto;
         | 
| 337 | 
            +
            			bottom:0;
         | 
| 338 | 
            +
            			}
         | 
| 339 | 
            +
            		&.l {
         | 
| 340 | 
            +
            			left:0;
         | 
| 341 | 
            +
            			}
         | 
| 342 | 
            +
            		}
         | 
| 343 | 
            +
            	// Notes
         | 
| 344 | 
            +
            	footer {
         | 
| 345 | 
            +
            		position:absolute;
         | 
| 346 | 
            +
            		left:0;
         | 
| 347 | 
            +
            		right:0;
         | 
| 348 | 
            +
            		bottom:-$height;
         | 
| 349 | 
            +
            		z-index:1;
         | 
| 350 | 
            +
            		display:none;
         | 
| 351 | 
            +
            		padding:21px $right 4px $left;
         | 
| 352 | 
            +
            		background:$yellow;
         | 
| 353 | 
            +
            		box-shadow:0 0 0 2px rgba(#000, 0.05);
         | 
| 354 | 
            +
            		transition:bottom 0.3s;
         | 
| 355 | 
            +
            		p {
         | 
| 356 | 
            +
            			margin:0 0 16px;
         | 
| 357 | 
            +
            			}
         | 
| 358 | 
            +
            		mark {
         | 
| 359 | 
            +
            			background:rgba(#FFF, 0.7);
         | 
| 360 | 
            +
            			}
         | 
| 361 | 
            +
            		}
         | 
| 362 | 
            +
            	&:hover footer {
         | 
| 363 | 
            +
            		bottom:0;
         | 
| 364 | 
            +
            		}
         | 
| 365 | 
            +
            	}
         | 
| 366 | 
            +
             | 
| 367 | 
            +
            // Screen
         | 
| 368 | 
            +
            @media screen {
         | 
| 369 | 
            +
            	// List
         | 
| 370 | 
            +
            	.shower.list {
         | 
| 371 | 
            +
            		position:absolute;
         | 
| 372 | 
            +
            		clip:rect(0, auto, auto, 0); // Having fun with IE10
         | 
| 373 | 
            +
            		padding:50px 0 50px 50px;
         | 
| 374 | 
            +
            		background:desaturate(lighten($color, 30%), 60%);
         | 
| 375 | 
            +
            		text-align:center;
         | 
| 376 | 
            +
            		// Outfit
         | 
| 377 | 
            +
            		.caption,
         | 
| 378 | 
            +
            		.badge {
         | 
| 379 | 
            +
            			display:block;
         | 
| 380 | 
            +
            			}
         | 
| 381 | 
            +
            		// Slide
         | 
| 382 | 
            +
            		.slide {
         | 
| 383 | 
            +
            			// Gap between slides
         | 
| 384 | 
            +
            			$gap:50px;
         | 
| 385 | 
            +
            			position:relative;
         | 
| 386 | 
            +
            			top:$height/2 - $gap;
         | 
| 387 | 
            +
            			display:inline-block;
         | 
| 388 | 
            +
            			margin:($gap - $height/2) ($gap - $width/2) 0 0;
         | 
| 389 | 
            +
            			text-align:left;
         | 
| 390 | 
            +
            			transform-origin:0 0;
         | 
| 391 | 
            +
            			transform:scale(0.5);
         | 
| 392 | 
            +
            			@media (max-width:$break) {
         | 
| 393 | 
            +
            				top:$height/2 + $height/4 - $gap;
         | 
| 394 | 
            +
            				margin:($gap - ($height/2 + $height/4)) ($gap - ($width/2 + $width/4)) 0 0;
         | 
| 395 | 
            +
            				transform:scale(0.25);
         | 
| 396 | 
            +
            				}
         | 
| 397 | 
            +
            			// Frame
         | 
| 398 | 
            +
            			&:before {
         | 
| 399 | 
            +
            				position:absolute;
         | 
| 400 | 
            +
            				top:0;
         | 
| 401 | 
            +
            				left:0;
         | 
| 402 | 
            +
            				z-index:-1;
         | 
| 403 | 
            +
            				width:$width/2;
         | 
| 404 | 
            +
            				height:$height/2;
         | 
| 405 | 
            +
            				box-shadow:0 0 0 1px #DDD;
         | 
| 406 | 
            +
            				content:'';
         | 
| 407 | 
            +
            				transform-origin:0 0;
         | 
| 408 | 
            +
            				transform:scale(2);
         | 
| 409 | 
            +
            				@media (max-width:$break) {
         | 
| 410 | 
            +
            					width:$width/4;
         | 
| 411 | 
            +
            					height:$height/4;
         | 
| 412 | 
            +
            					transform:scale(4);
         | 
| 413 | 
            +
            					}
         | 
| 414 | 
            +
            				}
         | 
| 415 | 
            +
            			// Number
         | 
| 416 | 
            +
            			&:after {
         | 
| 417 | 
            +
            				top:100%;
         | 
| 418 | 
            +
            				bottom:auto;
         | 
| 419 | 
            +
            				padding-top:50px;
         | 
| 420 | 
            +
            				@media (max-width:$break) {
         | 
| 421 | 
            +
            					width:$width/2;
         | 
| 422 | 
            +
            					transform-origin:0 0;
         | 
| 423 | 
            +
            					transform:scale(2);
         | 
| 424 | 
            +
            					}
         | 
| 425 | 
            +
            				}
         | 
| 426 | 
            +
            			// Hover
         | 
| 427 | 
            +
            			&:hover:before {
         | 
| 428 | 
            +
            				box-shadow:
         | 
| 429 | 
            +
            					0 0 0 1px #EEE,
         | 
| 430 | 
            +
            					0 0 0 12px rgba(#FFF, 0.5);
         | 
| 431 | 
            +
            				}
         | 
| 432 | 
            +
            			// Current
         | 
| 433 | 
            +
            			&:target {
         | 
| 434 | 
            +
            				&:before {
         | 
| 435 | 
            +
            					box-shadow:
         | 
| 436 | 
            +
            						0 0 10px 0 darken($color, 5%),
         | 
| 437 | 
            +
            						0 0 0 12px $color;
         | 
| 438 | 
            +
            					}
         | 
| 439 | 
            +
            				&:after {
         | 
| 440 | 
            +
            					color:$color;
         | 
| 441 | 
            +
            					}
         | 
| 442 | 
            +
            				}
         | 
| 443 | 
            +
            			// Inner
         | 
| 444 | 
            +
            			> div {
         | 
| 445 | 
            +
            				&:before {
         | 
| 446 | 
            +
            					position:absolute;
         | 
| 447 | 
            +
            					top:0;
         | 
| 448 | 
            +
            					right:0;
         | 
| 449 | 
            +
            					bottom:0;
         | 
| 450 | 
            +
            					left:0;
         | 
| 451 | 
            +
            					z-index:2;
         | 
| 452 | 
            +
            					content:'';
         | 
| 453 | 
            +
            					}
         | 
| 454 | 
            +
            				}
         | 
| 455 | 
            +
            			// Cover Shout
         | 
| 456 | 
            +
            			&.cover,
         | 
| 457 | 
            +
            			&.shout {
         | 
| 458 | 
            +
            				&:after {
         | 
| 459 | 
            +
            					content:counter(slide);
         | 
| 460 | 
            +
            					}
         | 
| 461 | 
            +
            				}
         | 
| 462 | 
            +
            			// Notes
         | 
| 463 | 
            +
            			footer {
         | 
| 464 | 
            +
            				display:block;
         | 
| 465 | 
            +
            				}
         | 
| 466 | 
            +
            			}
         | 
| 467 | 
            +
            		}
         | 
| 468 | 
            +
            	// Full
         | 
| 469 | 
            +
            	.shower.full {
         | 
| 470 | 
            +
            		position:absolute;
         | 
| 471 | 
            +
            		top:50%;
         | 
| 472 | 
            +
            		left:50%;
         | 
| 473 | 
            +
            		overflow:hidden;
         | 
| 474 | 
            +
            		margin:(-$height/2) 0 0 (-$width/2);
         | 
| 475 | 
            +
            		width:$width;
         | 
| 476 | 
            +
            		height:$height;
         | 
| 477 | 
            +
            		background:#000;
         | 
| 478 | 
            +
            		// Debug
         | 
| 479 | 
            +
            		&.debug:after {
         | 
| 480 | 
            +
            			position:absolute;
         | 
| 481 | 
            +
            			top:0;
         | 
| 482 | 
            +
            			right:0;
         | 
| 483 | 
            +
            			bottom:0;
         | 
| 484 | 
            +
            			left:0;
         | 
| 485 | 
            +
            			z-index:2;
         | 
| 486 | 
            +
            			background:url(../images/grid-#{$ratio}.svg) no-repeat;
         | 
| 487 | 
            +
            			content:'';
         | 
| 488 | 
            +
            			}
         | 
| 489 | 
            +
            		// Region
         | 
| 490 | 
            +
            		.region {
         | 
| 491 | 
            +
            			@include offscreen;
         | 
| 492 | 
            +
            			display:block;
         | 
| 493 | 
            +
            			}
         | 
| 494 | 
            +
            		// Slide
         | 
| 495 | 
            +
            		.slide {
         | 
| 496 | 
            +
            			position:absolute;
         | 
| 497 | 
            +
            			top:0;
         | 
| 498 | 
            +
            			left:0;
         | 
| 499 | 
            +
            			margin-left:150%;
         | 
| 500 | 
            +
            			// Next
         | 
| 501 | 
            +
            			.next {
         | 
| 502 | 
            +
            				visibility:hidden;
         | 
| 503 | 
            +
            				&.active {
         | 
| 504 | 
            +
            					visibility:visible;
         | 
| 505 | 
            +
            					}
         | 
| 506 | 
            +
            				}
         | 
| 507 | 
            +
            			// Current
         | 
| 508 | 
            +
            			&:target {
         | 
| 509 | 
            +
            				margin:0;
         | 
| 510 | 
            +
            				}
         | 
| 511 | 
            +
            			// Shout
         | 
| 512 | 
            +
            			&.shout {
         | 
| 513 | 
            +
            				&.right, &.up {
         | 
| 514 | 
            +
            					h2 {
         | 
| 515 | 
            +
            						opacity:0;
         | 
| 516 | 
            +
            						transition:all 0.4s ease-out;
         | 
| 517 | 
            +
            						}
         | 
| 518 | 
            +
            					&:target h2 {
         | 
| 519 | 
            +
            						opacity:1;
         | 
| 520 | 
            +
            						transform:translateX(0) translateY(-50%);
         | 
| 521 | 
            +
            						}
         | 
| 522 | 
            +
            					}
         | 
| 523 | 
            +
            				&.right h2 {
         | 
| 524 | 
            +
            					transform:translateX(-100%) translateY(-50%);
         | 
| 525 | 
            +
            					}
         | 
| 526 | 
            +
            				&.up h2 {
         | 
| 527 | 
            +
            					transform:translateX(0) translateY(100%);
         | 
| 528 | 
            +
            					}
         | 
| 529 | 
            +
            				}
         | 
| 530 | 
            +
            			}
         | 
| 531 | 
            +
            		// Progress
         | 
| 532 | 
            +
            		.progress {
         | 
| 533 | 
            +
            			position:absolute;
         | 
| 534 | 
            +
            			bottom:0;
         | 
| 535 | 
            +
            			left:0;
         | 
| 536 | 
            +
            			z-index:1;
         | 
| 537 | 
            +
            			width:0;
         | 
| 538 | 
            +
            			height:8px;
         | 
| 539 | 
            +
            			background:$color;
         | 
| 540 | 
            +
            			transition:width 0.2s linear;
         | 
| 541 | 
            +
            			}
         | 
| 542 | 
            +
            		}
         | 
| 543 | 
            +
            	}
         | 
| 544 | 
            +
             | 
| 545 | 
            +
            // Print
         | 
| 546 | 
            +
            @page {
         | 
| 547 | 
            +
            	margin:0;
         | 
| 548 | 
            +
            	size:$width $height;
         | 
| 549 | 
            +
            	}
         |