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,87 @@ | |
| 1 | 
            +
            .header {
         | 
| 2 | 
            +
                background: $text-color;
         | 
| 3 | 
            +
                color: rgba(256, 256, 256, 0.85);
         | 
| 4 | 
            +
                border-top: 5px solid $color-primary;
         | 
| 5 | 
            +
                padding: 30px 0;
         | 
| 6 | 
            +
                a {
         | 
| 7 | 
            +
                    color: #fff;
         | 
| 8 | 
            +
                }
         | 
| 9 | 
            +
            }
         | 
| 10 | 
            +
            .branding {
         | 
| 11 | 
            +
                text-transform: uppercase;
         | 
| 12 | 
            +
                margin-bottom: 10px;
         | 
| 13 | 
            +
                .logo {
         | 
| 14 | 
            +
                    font-size: 28px;
         | 
| 15 | 
            +
                    margin-top: 0;
         | 
| 16 | 
            +
                    margin-bottom: 0;
         | 
| 17 | 
            +
                    a {
         | 
| 18 | 
            +
                        text-decoration: none;
         | 
| 19 | 
            +
                    }
         | 
| 20 | 
            +
                }
         | 
| 21 | 
            +
                .text-highlight {
         | 
| 22 | 
            +
                    color: $color-primary;
         | 
| 23 | 
            +
                    .body-green & {
         | 
| 24 | 
            +
                        color: $color-green;
         | 
| 25 | 
            +
                    }
         | 
| 26 | 
            +
                    .body-blue & {
         | 
| 27 | 
            +
                        color: $color-blue;
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                    .body-orange & {
         | 
| 30 | 
            +
                        color: $color-orange;
         | 
| 31 | 
            +
                    }
         | 
| 32 | 
            +
                    .body-red & {
         | 
| 33 | 
            +
                        color: $color-red;
         | 
| 34 | 
            +
                    }
         | 
| 35 | 
            +
                    .body-pink & {
         | 
| 36 | 
            +
                        color: $color-pink;
         | 
| 37 | 
            +
                    }
         | 
| 38 | 
            +
                    .body-purple & {
         | 
| 39 | 
            +
                        color: $color-purple;
         | 
| 40 | 
            +
                    }
         | 
| 41 | 
            +
                }
         | 
| 42 | 
            +
                .text-bold {
         | 
| 43 | 
            +
                    font-weight: 800;
         | 
| 44 | 
            +
                    color: #fff;
         | 
| 45 | 
            +
                }
         | 
| 46 | 
            +
                .icon {
         | 
| 47 | 
            +
                    font-size: 24px;
         | 
| 48 | 
            +
                    color: $color-primary;
         | 
| 49 | 
            +
                    .body-green & {
         | 
| 50 | 
            +
                        color: $color-green;
         | 
| 51 | 
            +
                    }
         | 
| 52 | 
            +
                    .body-blue & {
         | 
| 53 | 
            +
                        color: $color-blue;
         | 
| 54 | 
            +
                    }
         | 
| 55 | 
            +
                    .body-orange & {
         | 
| 56 | 
            +
                        color: $color-orange;
         | 
| 57 | 
            +
                    }
         | 
| 58 | 
            +
                    .body-red & {
         | 
| 59 | 
            +
                        color: $color-red;
         | 
| 60 | 
            +
                    }
         | 
| 61 | 
            +
                    .body-pink & {
         | 
| 62 | 
            +
                        color: $color-pink;
         | 
| 63 | 
            +
                    }
         | 
| 64 | 
            +
                    .body-purple & {
         | 
| 65 | 
            +
                        color: $color-purple;
         | 
| 66 | 
            +
                    }
         | 
| 67 | 
            +
                }
         | 
| 68 | 
            +
            }
         | 
| 69 | 
            +
             | 
| 70 | 
            +
            .breadcrumb {
         | 
| 71 | 
            +
                background: none;
         | 
| 72 | 
            +
                margin-bottom: 0;
         | 
| 73 | 
            +
                padding: 0;
         | 
| 74 | 
            +
                li {
         | 
| 75 | 
            +
                    color: rgba(256, 256, 256, 0.5);
         | 
| 76 | 
            +
                    &.active {
         | 
| 77 | 
            +
                        color: rgba(256, 256, 256, 0.5);
         | 
| 78 | 
            +
                    }
         | 
| 79 | 
            +
                    a {
         | 
| 80 | 
            +
                        color: rgba(256, 256, 256, 0.5);
         | 
| 81 | 
            +
                        &:hover {
         | 
| 82 | 
            +
                            color: #fff;
         | 
| 83 | 
            +
                        }
         | 
| 84 | 
            +
                    }
         | 
| 85 | 
            +
                } 
         | 
| 86 | 
            +
                
         | 
| 87 | 
            +
            }
         | 
| @@ -0,0 +1,42 @@ | |
| 1 | 
            +
            .bordered {
         | 
| 2 | 
            +
                display: inline-block;
         | 
| 3 | 
            +
                color: rgba(255, 255, 255, .6);
         | 
| 4 | 
            +
                border: 1px solid rgba(255, 255, 255, .6);
         | 
| 5 | 
            +
                border-radius: 0;
         | 
| 6 | 
            +
                &.dark-border {
         | 
| 7 | 
            +
                    color: rgba(51, 51, 51, .6);
         | 
| 8 | 
            +
                    border-color: rgba(51, 51, 51, .6);
         | 
| 9 | 
            +
                }
         | 
| 10 | 
            +
            }
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            .tags a {
         | 
| 13 | 
            +
            	border: 1px solid #DDD;
         | 
| 14 | 
            +
            	display: inline-block;
         | 
| 15 | 
            +
            	color: $dark;
         | 
| 16 | 
            +
            	background: $light;
         | 
| 17 | 
            +
            	-webkit-box-shadow: 0 1px 1px 0 rgba(180,180,180,0.1);
         | 
| 18 | 
            +
            	box-shadow: 0 1px 1px 0 rgba(180,180,180,0.1);
         | 
| 19 | 
            +
            	-webkit-transition: all .1s ease-in-out;
         | 
| 20 | 
            +
            	-moz-transition: all .1s ease-in-out;
         | 
| 21 | 
            +
            	-o-transition: all .1s ease-in-out;
         | 
| 22 | 
            +
            	-ms-transition: all .1s ease-in-out;
         | 
| 23 | 
            +
            	transition: all .1s ease-in-out;
         | 
| 24 | 
            +
            	border-radius: 2px;
         | 
| 25 | 
            +
            	margin: 0 3px 6px 0;
         | 
| 26 | 
            +
            	padding: 5px 10px;
         | 
| 27 | 
            +
            }
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            .tags a:hover {
         | 
| 30 | 
            +
            	border-color: $primary;
         | 
| 31 | 
            +
            }
         | 
| 32 | 
            +
             | 
| 33 | 
            +
            .row-centered {
         | 
| 34 | 
            +
                text-align:center;
         | 
| 35 | 
            +
            }
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            .col-centered {
         | 
| 38 | 
            +
                display:inline-grid;
         | 
| 39 | 
            +
                float:none;
         | 
| 40 | 
            +
                /* inline-block space fix */
         | 
| 41 | 
            +
                margin-right:-4px;
         | 
| 42 | 
            +
            }
         | 
| @@ -0,0 +1,61 @@ | |
| 1 | 
            +
            /* ======= Landing Page ======= */
         | 
| 2 | 
            +
            .landing-page {
         | 
| 3 | 
            +
                .header {
         | 
| 4 | 
            +
                    background: $text-color;
         | 
| 5 | 
            +
                    color: rgba(256, 256, 256, 0.85);
         | 
| 6 | 
            +
                    padding: 60px 0;
         | 
| 7 | 
            +
                    a {
         | 
| 8 | 
            +
                        color: #fff;
         | 
| 9 | 
            +
                    }
         | 
| 10 | 
            +
                }
         | 
| 11 | 
            +
                .branding {
         | 
| 12 | 
            +
                    text-transform: uppercase;
         | 
| 13 | 
            +
                    margin-bottom: 20px;
         | 
| 14 | 
            +
                    .logo {
         | 
| 15 | 
            +
                        font-size: 38px;
         | 
| 16 | 
            +
                        margin-top: 0;
         | 
| 17 | 
            +
                        margin-bottom: 0;
         | 
| 18 | 
            +
                    }
         | 
| 19 | 
            +
                    .text-bold {
         | 
| 20 | 
            +
                        font-weight: 800;
         | 
| 21 | 
            +
                        color: #fff;
         | 
| 22 | 
            +
                    }
         | 
| 23 | 
            +
                    .icon {
         | 
| 24 | 
            +
                        font-size: 32px;
         | 
| 25 | 
            +
                        color: $color-primary;
         | 
| 26 | 
            +
                    }
         | 
| 27 | 
            +
                }
         | 
| 28 | 
            +
                
         | 
| 29 | 
            +
                .tagline {
         | 
| 30 | 
            +
                    font-weight: 600;
         | 
| 31 | 
            +
                    font-size: 20px;
         | 
| 32 | 
            +
                    p {
         | 
| 33 | 
            +
                        margin-bottom: 5px;
         | 
| 34 | 
            +
                    }
         | 
| 35 | 
            +
                    .text-highlight{
         | 
| 36 | 
            +
                        color: darken($color-primary, 20%);
         | 
| 37 | 
            +
                    }
         | 
| 38 | 
            +
                }
         | 
| 39 | 
            +
                
         | 
| 40 | 
            +
                .fa-heart {
         | 
| 41 | 
            +
                    color: $color-pink;
         | 
| 42 | 
            +
                }
         | 
| 43 | 
            +
                
         | 
| 44 | 
            +
                .cta-container {
         | 
| 45 | 
            +
                    margin-top: 30px;
         | 
| 46 | 
            +
                }
         | 
| 47 | 
            +
                
         | 
| 48 | 
            +
                .social-container {
         | 
| 49 | 
            +
                    margin-top: 30px;
         | 
| 50 | 
            +
                    .twitter-tweet {
         | 
| 51 | 
            +
                        display: inline-block;
         | 
| 52 | 
            +
                        margin-right: 5px;
         | 
| 53 | 
            +
                        position: relative;
         | 
| 54 | 
            +
                        top:5px;
         | 
| 55 | 
            +
                    }
         | 
| 56 | 
            +
                    .fab-like{
         | 
| 57 | 
            +
                        display: inline-block;
         | 
| 58 | 
            +
                    }
         | 
| 59 | 
            +
                }
         | 
| 60 | 
            +
                
         | 
| 61 | 
            +
            }
         | 
| @@ -0,0 +1,32 @@ | |
| 1 | 
            +
            #post {
         | 
| 2 | 
            +
                margin-top: 15px;
         | 
| 3 | 
            +
                padding-top: 15px;
         | 
| 4 | 
            +
                @media(min-width:767px) {
         | 
| 5 | 
            +
                    margin-top: 30px;
         | 
| 6 | 
            +
                    padding-top: 30px;
         | 
| 7 | 
            +
                }
         | 
| 8 | 
            +
            }
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            .post-content {
         | 
| 11 | 
            +
                ul,
         | 
| 12 | 
            +
                ol {
         | 
| 13 | 
            +
                    text-align: left !important;
         | 
| 14 | 
            +
                    list-style-position: inside;
         | 
| 15 | 
            +
                }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
                h3 {
         | 
| 18 | 
            +
                    font-size: 24px;
         | 
| 19 | 
            +
                }
         | 
| 20 | 
            +
             | 
| 21 | 
            +
                .presentation {
         | 
| 22 | 
            +
                    text-align: center;
         | 
| 23 | 
            +
                }
         | 
| 24 | 
            +
             | 
| 25 | 
            +
                .frame {
         | 
| 26 | 
            +
                    border:1px solid #CCC;
         | 
| 27 | 
            +
                    max-width: 100%;
         | 
| 28 | 
            +
                    width: 595px;
         | 
| 29 | 
            +
                    height: 485px;
         | 
| 30 | 
            +
                    overflow: hidden;
         | 
| 31 | 
            +
                }
         | 
| 32 | 
            +
            }
         | 
| @@ -0,0 +1,163 @@ | |
| 1 | 
            +
            .toc-sidebar {
         | 
| 2 | 
            +
                width: 230px;
         | 
| 3 | 
            +
            }
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            .toc-menu {
         | 
| 6 | 
            +
                list-style: none;
         | 
| 7 | 
            +
                padding-left: 0;
         | 
| 8 | 
            +
                
         | 
| 9 | 
            +
                & > li {
         | 
| 10 | 
            +
                    margin-bottom: 5px;
         | 
| 11 | 
            +
                    & > a {
         | 
| 12 | 
            +
                        display: block;
         | 
| 13 | 
            +
                        padding: 5px 15px;
         | 
| 14 | 
            +
                        border-left: 4px solid transparent;
         | 
| 15 | 
            +
                        color: $text-color-secondary;
         | 
| 16 | 
            +
                        &:hover, &:focus {
         | 
| 17 | 
            +
                            color: $color-primary;
         | 
| 18 | 
            +
                            text-decoration: none;
         | 
| 19 | 
            +
                            background: none;
         | 
| 20 | 
            +
                            .body-green & {
         | 
| 21 | 
            +
                                color: $color-green;
         | 
| 22 | 
            +
                            }
         | 
| 23 | 
            +
                            .body-blue & {
         | 
| 24 | 
            +
                                color: $color-blue;
         | 
| 25 | 
            +
                            }
         | 
| 26 | 
            +
                            .body-orange & {
         | 
| 27 | 
            +
                                color: $color-orange;
         | 
| 28 | 
            +
                            }
         | 
| 29 | 
            +
                            .body-red & {
         | 
| 30 | 
            +
                                color: $color-red;
         | 
| 31 | 
            +
                            }
         | 
| 32 | 
            +
                            .body-pink & {
         | 
| 33 | 
            +
                                color: $color-pink;
         | 
| 34 | 
            +
                            }
         | 
| 35 | 
            +
                            .body-purple & {
         | 
| 36 | 
            +
                                color: $color-purple;
         | 
| 37 | 
            +
                            }
         | 
| 38 | 
            +
                        }
         | 
| 39 | 
            +
                    }
         | 
| 40 | 
            +
                    &.active {
         | 
| 41 | 
            +
                        & > a {
         | 
| 42 | 
            +
                            background: none;
         | 
| 43 | 
            +
                            border-left: 4px solid $color-primary;
         | 
| 44 | 
            +
                            color: $color-primary;
         | 
| 45 | 
            +
                            font-weight: 600;
         | 
| 46 | 
            +
                            .body-green & {
         | 
| 47 | 
            +
                                color: $color-green;
         | 
| 48 | 
            +
                                border-color: $color-green;
         | 
| 49 | 
            +
                            }
         | 
| 50 | 
            +
                            .body-blue & {
         | 
| 51 | 
            +
                                color: $color-blue;
         | 
| 52 | 
            +
                                border-color: $color-blue;
         | 
| 53 | 
            +
                            }
         | 
| 54 | 
            +
                            .body-orange & {
         | 
| 55 | 
            +
                                color: $color-orange;
         | 
| 56 | 
            +
                                border-color: $color-orange;
         | 
| 57 | 
            +
                            }
         | 
| 58 | 
            +
                            .body-red & {
         | 
| 59 | 
            +
                                color: $color-red;
         | 
| 60 | 
            +
                                border-color: $color-red;
         | 
| 61 | 
            +
                            }
         | 
| 62 | 
            +
                            .body-pink & {
         | 
| 63 | 
            +
                                color: $color-pink;
         | 
| 64 | 
            +
                                border-color: $color-pink;
         | 
| 65 | 
            +
                            }
         | 
| 66 | 
            +
                            .body-purple & {
         | 
| 67 | 
            +
                                color: $color-purple;
         | 
| 68 | 
            +
                                border-color: $color-purple;
         | 
| 69 | 
            +
                            }
         | 
| 70 | 
            +
                        }
         | 
| 71 | 
            +
                        
         | 
| 72 | 
            +
                        
         | 
| 73 | 
            +
                    }
         | 
| 74 | 
            +
                }
         | 
| 75 | 
            +
            }
         | 
| 76 | 
            +
             | 
| 77 | 
            +
            .toc-sub-menu {
         | 
| 78 | 
            +
                list-style: none;
         | 
| 79 | 
            +
                padding-left: 0;
         | 
| 80 | 
            +
                & > li {
         | 
| 81 | 
            +
                    margin-bottom: 10px;
         | 
| 82 | 
            +
                    font-size: 12px;
         | 
| 83 | 
            +
                    &:first-child {
         | 
| 84 | 
            +
                        padding-top: 5px;
         | 
| 85 | 
            +
                    }
         | 
| 86 | 
            +
                    & > a {
         | 
| 87 | 
            +
                        display: block;
         | 
| 88 | 
            +
                        color: $text-color-secondary;
         | 
| 89 | 
            +
                        padding: 0;
         | 
| 90 | 
            +
                        padding-left: 34px;
         | 
| 91 | 
            +
                        background: none;
         | 
| 92 | 
            +
                        &:hover{
         | 
| 93 | 
            +
                            color: $color-primary;
         | 
| 94 | 
            +
                            text-decoration: none;
         | 
| 95 | 
            +
                            background: none;
         | 
| 96 | 
            +
                            .body-green & {
         | 
| 97 | 
            +
                                color: $color-green;
         | 
| 98 | 
            +
                            }
         | 
| 99 | 
            +
                            .body-blue & {
         | 
| 100 | 
            +
                                color: $color-blue;
         | 
| 101 | 
            +
                            }
         | 
| 102 | 
            +
                            .body-orange & {
         | 
| 103 | 
            +
                                color: $color-orange;
         | 
| 104 | 
            +
                            }
         | 
| 105 | 
            +
                            .body-red & {
         | 
| 106 | 
            +
                                color: $color-red;
         | 
| 107 | 
            +
                            }
         | 
| 108 | 
            +
                            .body-pink & {
         | 
| 109 | 
            +
                                color: $color-pink;
         | 
| 110 | 
            +
                            }
         | 
| 111 | 
            +
                            .body-purple & {
         | 
| 112 | 
            +
                                color: $color-purple;
         | 
| 113 | 
            +
                            }
         | 
| 114 | 
            +
                        }
         | 
| 115 | 
            +
                        &:focus {
         | 
| 116 | 
            +
                            background: none;
         | 
| 117 | 
            +
                        }
         | 
| 118 | 
            +
                    }
         | 
| 119 | 
            +
                    &.active {
         | 
| 120 | 
            +
                        & > a {
         | 
| 121 | 
            +
                            background: none;
         | 
| 122 | 
            +
                            color: $color-primary;
         | 
| 123 | 
            +
                            .body-green & {
         | 
| 124 | 
            +
                                color: $color-green;
         | 
| 125 | 
            +
                            }
         | 
| 126 | 
            +
                            .body-blue & {
         | 
| 127 | 
            +
                                color: $color-blue;
         | 
| 128 | 
            +
                            }
         | 
| 129 | 
            +
                            .body-orange & {
         | 
| 130 | 
            +
                                color: $color-orange;
         | 
| 131 | 
            +
                            }
         | 
| 132 | 
            +
                            .body-red & {
         | 
| 133 | 
            +
                                color: $color-red;
         | 
| 134 | 
            +
                            }
         | 
| 135 | 
            +
                            .body-pink & {
         | 
| 136 | 
            +
                                color: $color-pink;
         | 
| 137 | 
            +
                            }
         | 
| 138 | 
            +
                            .body-purple & {
         | 
| 139 | 
            +
                                color: $color-purple;
         | 
| 140 | 
            +
                            }
         | 
| 141 | 
            +
                        }
         | 
| 142 | 
            +
                    }
         | 
| 143 | 
            +
                }
         | 
| 144 | 
            +
            }
         | 
| 145 | 
            +
             | 
| 146 | 
            +
            .affix-top {
         | 
| 147 | 
            +
                position: absolute;
         | 
| 148 | 
            +
                top: 15px;
         | 
| 149 | 
            +
            }
         | 
| 150 | 
            +
             | 
| 151 | 
            +
            .affix {
         | 
| 152 | 
            +
                top: 15px;
         | 
| 153 | 
            +
            }
         | 
| 154 | 
            +
             | 
| 155 | 
            +
            .affix, 
         | 
| 156 | 
            +
            .affix-top,
         | 
| 157 | 
            +
            .affix-bottom {
         | 
| 158 | 
            +
                width: 230px;
         | 
| 159 | 
            +
            }
         | 
| 160 | 
            +
             | 
| 161 | 
            +
            .affix-bottom {
         | 
| 162 | 
            +
                position: absolute;
         | 
| 163 | 
            +
            }
         | 
| @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            // Modules and Variables
         | 
| 2 | 
            +
            @import "globals/base";
         | 
| 3 | 
            +
            @import "globals/mixins";
         | 
| 4 | 
            +
            @import "partials/helper";
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            // Sections
         | 
| 7 | 
            +
            @import "partials/base";
         | 
| 8 | 
            +
            @import "partials/buttons";
         | 
| 9 | 
            +
            @import "partials/cards";
         | 
| 10 | 
            +
            @import "partials/contact";
         | 
| 11 | 
            +
            @import "partials/doc";
         | 
| 12 | 
            +
            @import "partials/footer";
         | 
| 13 | 
            +
            @import "partials/header";
         | 
| 14 | 
            +
            @import "partials/landing";
         | 
| 15 | 
            +
            @import "partials/post";
         | 
| 16 | 
            +
            @import "partials/resources";
         | 
| 17 | 
            +
            @import "partials/toc";
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            // 3rd Party
         | 
| 20 | 
            +
            @import "vendor/timeline";
         | 
| @@ -0,0 +1,535 @@ | |
| 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 'shower/defaults';
         | 
| 6 | 
            +
            @import 'shower/reset';
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            .shower {
         | 
| 9 | 
            +
                counter-reset:slide;
         | 
| 10 | 
            +
                font:24px/2 'Open Sans', sans-serif;
         | 
| 11 | 
            +
                @media print {
         | 
| 12 | 
            +
                    text-rendering:geometricPrecision;
         | 
| 13 | 
            +
                    }
         | 
| 14 | 
            +
                a {
         | 
| 15 | 
            +
                    color:$color;
         | 
| 16 | 
            +
                    @include underline(currentColor, 0.09);
         | 
| 17 | 
            +
                    text-decoration:none;
         | 
| 18 | 
            +
                    }
         | 
| 19 | 
            +
                }
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            .caption {
         | 
| 22 | 
            +
                display:none;
         | 
| 23 | 
            +
                margin:0 0 60px;
         | 
| 24 | 
            +
                padding:0 50px 0 0;
         | 
| 25 | 
            +
                color:#555;
         | 
| 26 | 
            +
                h1 {
         | 
| 27 | 
            +
                    font:50px 'Open Sans Light', sans-serif;
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                }
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            .badge {
         | 
| 32 | 
            +
                position:absolute;
         | 
| 33 | 
            +
                top:0;
         | 
| 34 | 
            +
                right:0;
         | 
| 35 | 
            +
                display:none;
         | 
| 36 | 
            +
                overflow:hidden;
         | 
| 37 | 
            +
                visibility:hidden;
         | 
| 38 | 
            +
                width:11em;
         | 
| 39 | 
            +
                height:11em;
         | 
| 40 | 
            +
                line-height:2.5;
         | 
| 41 | 
            +
                font-size:15px;
         | 
| 42 | 
            +
                }
         | 
| 43 | 
            +
                .badge a {
         | 
| 44 | 
            +
                    position:absolute;
         | 
| 45 | 
            +
                    bottom:50%;
         | 
| 46 | 
            +
                    right:-50%;
         | 
| 47 | 
            +
                    left:-50%;
         | 
| 48 | 
            +
                    visibility:visible;
         | 
| 49 | 
            +
                    background:$color;
         | 
| 50 | 
            +
                    color:#FFF;
         | 
| 51 | 
            +
                    text-align:center;
         | 
| 52 | 
            +
                    transform-origin:50% 100%;
         | 
| 53 | 
            +
                    transform:rotate(45deg) translateY(-1em);
         | 
| 54 | 
            +
                    }
         | 
| 55 | 
            +
             | 
| 56 | 
            +
            .region {
         | 
| 57 | 
            +
                display:none;
         | 
| 58 | 
            +
                }
         | 
| 59 | 
            +
             | 
| 60 | 
            +
            .slide {
         | 
| 61 | 
            +
                position:relative;
         | 
| 62 | 
            +
                width:$width;
         | 
| 63 | 
            +
                height:$height;
         | 
| 64 | 
            +
                background:#FFF;
         | 
| 65 | 
            +
                color:#000;
         | 
| 66 | 
            +
                -webkit-print-color-adjust:exact;
         | 
| 67 | 
            +
                -webkit-text-size-adjust:none;
         | 
| 68 | 
            +
                -moz-text-size-adjust:none;
         | 
| 69 | 
            +
                -ms-text-size-adjust:none;
         | 
| 70 | 
            +
                @media print {
         | 
| 71 | 
            +
                    page-break-before:always;
         | 
| 72 | 
            +
                    }
         | 
| 73 | 
            +
             | 
| 74 | 
            +
                &:after {
         | 
| 75 | 
            +
                    position:absolute;
         | 
| 76 | 
            +
                    right:0;
         | 
| 77 | 
            +
                    bottom:45px;
         | 
| 78 | 
            +
                    left:0;
         | 
| 79 | 
            +
                    color:#AAA;
         | 
| 80 | 
            +
                    counter-increment:slide;
         | 
| 81 | 
            +
                    content:counter(slide);
         | 
| 82 | 
            +
                    text-align:center;
         | 
| 83 | 
            +
                    line-height:1;
         | 
| 84 | 
            +
                    }
         | 
| 85 | 
            +
             | 
| 86 | 
            +
                > div {
         | 
| 87 | 
            +
                    position:absolute;
         | 
| 88 | 
            +
                    top:0;
         | 
| 89 | 
            +
                    left:0;
         | 
| 90 | 
            +
                    overflow:hidden;
         | 
| 91 | 
            +
                    padding:$top $right 0 $left;
         | 
| 92 | 
            +
                    width:$width - $left - $right;
         | 
| 93 | 
            +
                    height:$height - $top;
         | 
| 94 | 
            +
                    }
         | 
| 95 | 
            +
                }
         | 
| 96 | 
            +
             | 
| 97 | 
            +
            .slide {
         | 
| 98 | 
            +
                h2 {
         | 
| 99 | 
            +
                    margin:0 0 58px;
         | 
| 100 | 
            +
                    font:48px/1 'Open Sans Light', sans-serif;
         | 
| 101 | 
            +
                    }
         | 
| 102 | 
            +
             | 
| 103 | 
            +
                p {
         | 
| 104 | 
            +
                    margin:0 0 48px;
         | 
| 105 | 
            +
                    }
         | 
| 106 | 
            +
                p.note {
         | 
| 107 | 
            +
                    color:#AAA;
         | 
| 108 | 
            +
                    }
         | 
| 109 | 
            +
                b, strong {
         | 
| 110 | 
            +
                    font-weight:bold;
         | 
| 111 | 
            +
                    }
         | 
| 112 | 
            +
                i, em {
         | 
| 113 | 
            +
                    font-style:italic;
         | 
| 114 | 
            +
                    }
         | 
| 115 | 
            +
                code, kbd, samp {
         | 
| 116 | 
            +
                    padding:5px 7px 1px;
         | 
| 117 | 
            +
                    background:rgba(#000, 0.08);
         | 
| 118 | 
            +
                    color:#000;
         | 
| 119 | 
            +
                    line-height:1;
         | 
| 120 | 
            +
                    font-family:'Anka Coder', monospace;
         | 
| 121 | 
            +
                    }
         | 
| 122 | 
            +
                mark {
         | 
| 123 | 
            +
                    padding:2px 7px;
         | 
| 124 | 
            +
                    background:$yellow;
         | 
| 125 | 
            +
                    color:#000;
         | 
| 126 | 
            +
                    }
         | 
| 127 | 
            +
                sub, sup {
         | 
| 128 | 
            +
                    position: relative;
         | 
| 129 | 
            +
                    line-height:0;
         | 
| 130 | 
            +
                    font-size:75%;
         | 
| 131 | 
            +
                    }
         | 
| 132 | 
            +
                sub {
         | 
| 133 | 
            +
                    bottom:-0.25em;
         | 
| 134 | 
            +
                    }
         | 
| 135 | 
            +
                sup {
         | 
| 136 | 
            +
                    top:-0.5em;
         | 
| 137 | 
            +
                    }
         | 
| 138 | 
            +
             | 
| 139 | 
            +
                blockquote {
         | 
| 140 | 
            +
                    font-style:italic;
         | 
| 141 | 
            +
                    &:before {
         | 
| 142 | 
            +
                        position:absolute;
         | 
| 143 | 
            +
                        margin:-49px 0 0 -100px;
         | 
| 144 | 
            +
                        color:#DDD;
         | 
| 145 | 
            +
                        content:'\201C';
         | 
| 146 | 
            +
                        line-height:1;
         | 
| 147 | 
            +
                        font-size:200px;
         | 
| 148 | 
            +
                        }
         | 
| 149 | 
            +
                    & + figcaption {
         | 
| 150 | 
            +
                        margin:-48px 0 48px;
         | 
| 151 | 
            +
                        font-style:italic;
         | 
| 152 | 
            +
                        font-weight:bold;
         | 
| 153 | 
            +
                        }
         | 
| 154 | 
            +
                    }
         | 
| 155 | 
            +
             | 
| 156 | 
            +
                ol, ul {
         | 
| 157 | 
            +
                    margin:0 0 48px;
         | 
| 158 | 
            +
                    counter-reset:list;
         | 
| 159 | 
            +
                    li {
         | 
| 160 | 
            +
                        text-indent:-2em;
         | 
| 161 | 
            +
                        &:before {
         | 
| 162 | 
            +
                            display:inline-block;
         | 
| 163 | 
            +
                            width:2em;
         | 
| 164 | 
            +
                            color:#AAA;
         | 
| 165 | 
            +
                            text-align:right;
         | 
| 166 | 
            +
                            }
         | 
| 167 | 
            +
                        }
         | 
| 168 | 
            +
                    ol, ul {
         | 
| 169 | 
            +
                        margin:0 0 0 2em;
         | 
| 170 | 
            +
                        }
         | 
| 171 | 
            +
                    }
         | 
| 172 | 
            +
             | 
| 173 | 
            +
                ul > li:before {
         | 
| 174 | 
            +
                    content:'\2022\00A0\00A0\2009';
         | 
| 175 | 
            +
                    }
         | 
| 176 | 
            +
                ul > li:lang(ru):before {
         | 
| 177 | 
            +
                    content:'\2014\00A0\2009';
         | 
| 178 | 
            +
                    }
         | 
| 179 | 
            +
                ol > li:before {
         | 
| 180 | 
            +
                    counter-increment:list;
         | 
| 181 | 
            +
                    content:counter(list)'.\00A0\2009';
         | 
| 182 | 
            +
                    }
         | 
| 183 | 
            +
             | 
| 184 | 
            +
                pre {
         | 
| 185 | 
            +
                    margin:0 0 45px;
         | 
| 186 | 
            +
                    padding:3px 0 0;
         | 
| 187 | 
            +
                    counter-reset:code;
         | 
| 188 | 
            +
                    white-space:normal;
         | 
| 189 | 
            +
                    tab-size:4;
         | 
| 190 | 
            +
                    code {
         | 
| 191 | 
            +
                        display:block;
         | 
| 192 | 
            +
                        padding:0;
         | 
| 193 | 
            +
                        background:none;
         | 
| 194 | 
            +
                        white-space:pre;
         | 
| 195 | 
            +
                        line-height:2;
         | 
| 196 | 
            +
                        &:before {
         | 
| 197 | 
            +
                            position:absolute;
         | 
| 198 | 
            +
                            margin-left:-50px;
         | 
| 199 | 
            +
                            color:#AAA;
         | 
| 200 | 
            +
                            counter-increment:code;
         | 
| 201 | 
            +
                            content:counter(code, decimal-leading-zero)'.';
         | 
| 202 | 
            +
                            }
         | 
| 203 | 
            +
                        &:only-child:before {
         | 
| 204 | 
            +
                            content:'';
         | 
| 205 | 
            +
                            }
         | 
| 206 | 
            +
                        }
         | 
| 207 | 
            +
             | 
| 208 | 
            +
                    mark {
         | 
| 209 | 
            +
                        padding:5px 7px 1px;
         | 
| 210 | 
            +
                        &.important {
         | 
| 211 | 
            +
                            background:$color;
         | 
| 212 | 
            +
                            color:#FFF;
         | 
| 213 | 
            +
                            }
         | 
| 214 | 
            +
                        &.comment {
         | 
| 215 | 
            +
                            padding:0;
         | 
| 216 | 
            +
                            background:none;
         | 
| 217 | 
            +
                            color:#AAA;
         | 
| 218 | 
            +
                            }
         | 
| 219 | 
            +
                        }
         | 
| 220 | 
            +
                    }
         | 
| 221 | 
            +
             | 
| 222 | 
            +
                table {
         | 
| 223 | 
            +
                    margin:0 0 50px;
         | 
| 224 | 
            +
                    width:100%;
         | 
| 225 | 
            +
                    border-collapse:collapse;
         | 
| 226 | 
            +
                    border-spacing:0;
         | 
| 227 | 
            +
                    th, td {
         | 
| 228 | 
            +
                        @include underline($color, 0.055);
         | 
| 229 | 
            +
                        }
         | 
| 230 | 
            +
                    th {
         | 
| 231 | 
            +
                        text-align:left;
         | 
| 232 | 
            +
                        font-weight:bold;
         | 
| 233 | 
            +
                        }
         | 
| 234 | 
            +
                    &.striped {
         | 
| 235 | 
            +
                        tr:nth-child(even) {
         | 
| 236 | 
            +
                            background:mix($color, #FFF, 8%);
         | 
| 237 | 
            +
                            }
         | 
| 238 | 
            +
                        }
         | 
| 239 | 
            +
                    }
         | 
| 240 | 
            +
             | 
| 241 | 
            +
                &.cover,
         | 
| 242 | 
            +
                &.shout {
         | 
| 243 | 
            +
                    z-index:1;
         | 
| 244 | 
            +
                    &:after {
         | 
| 245 | 
            +
                        content:'';
         | 
| 246 | 
            +
                        }
         | 
| 247 | 
            +
                    }
         | 
| 248 | 
            +
             | 
| 249 | 
            +
                &.cover {
         | 
| 250 | 
            +
                    background:#000;
         | 
| 251 | 
            +
                    @mixin cover {
         | 
| 252 | 
            +
                        img, svg, video,
         | 
| 253 | 
            +
                        object, canvas, iframe {
         | 
| 254 | 
            +
                            @content;
         | 
| 255 | 
            +
                            }
         | 
| 256 | 
            +
                        }
         | 
| 257 | 
            +
                    @include cover {
         | 
| 258 | 
            +
                        position:absolute;
         | 
| 259 | 
            +
                        top:0;
         | 
| 260 | 
            +
                        left:0;
         | 
| 261 | 
            +
                        z-index:-1;
         | 
| 262 | 
            +
                        }
         | 
| 263 | 
            +
                    &.w {
         | 
| 264 | 
            +
                        @include cover {
         | 
| 265 | 
            +
                            top:50%;
         | 
| 266 | 
            +
                            width:100%;
         | 
| 267 | 
            +
                            transform:translateY(-50%);
         | 
| 268 | 
            +
                            }
         | 
| 269 | 
            +
                        }
         | 
| 270 | 
            +
                    &.h {
         | 
| 271 | 
            +
                        @include cover {
         | 
| 272 | 
            +
                            left:50%;
         | 
| 273 | 
            +
                            height:100%;
         | 
| 274 | 
            +
                            transform:translateX(-50%);
         | 
| 275 | 
            +
                            }
         | 
| 276 | 
            +
                        }
         | 
| 277 | 
            +
                    &.w.h {
         | 
| 278 | 
            +
                        @include cover {
         | 
| 279 | 
            +
                            top:0;
         | 
| 280 | 
            +
                            left:0;
         | 
| 281 | 
            +
                            transform:none;
         | 
| 282 | 
            +
                            }
         | 
| 283 | 
            +
                        }
         | 
| 284 | 
            +
                    }
         | 
| 285 | 
            +
             | 
| 286 | 
            +
                &.shout {
         | 
| 287 | 
            +
                    background:$color;
         | 
| 288 | 
            +
                    h2 {
         | 
| 289 | 
            +
                        position:absolute;
         | 
| 290 | 
            +
                        top:50%;
         | 
| 291 | 
            +
                        left:128px;
         | 
| 292 | 
            +
                        right:96px;
         | 
| 293 | 
            +
                        color:#FFF;
         | 
| 294 | 
            +
                        font-size:100px;
         | 
| 295 | 
            +
                        transform:translateY(-50%);
         | 
| 296 | 
            +
                        a {
         | 
| 297 | 
            +
                            @include underline(currentColor, 0.055);
         | 
| 298 | 
            +
                            color:#FFF;
         | 
| 299 | 
            +
                            }
         | 
| 300 | 
            +
                        }
         | 
| 301 | 
            +
                    }
         | 
| 302 | 
            +
             | 
| 303 | 
            +
                .place {
         | 
| 304 | 
            +
                    position:absolute;
         | 
| 305 | 
            +
                    top:50%;
         | 
| 306 | 
            +
                    left:50%;
         | 
| 307 | 
            +
                    transform:translate(-50%, -50%);
         | 
| 308 | 
            +
                    &.t.l, &.t.r, &.b.r, &.b.l {
         | 
| 309 | 
            +
                        transform:none;
         | 
| 310 | 
            +
                        }
         | 
| 311 | 
            +
                    &.t, &.b {
         | 
| 312 | 
            +
                        transform:translate(-50%, 0);
         | 
| 313 | 
            +
                        }
         | 
| 314 | 
            +
                    &.l, &.r {
         | 
| 315 | 
            +
                        transform:translate(0, -50%);
         | 
| 316 | 
            +
                        }
         | 
| 317 | 
            +
                    &.t, &.t.l, &.t.r {
         | 
| 318 | 
            +
                        top:0;
         | 
| 319 | 
            +
                        }
         | 
| 320 | 
            +
                    &.r {
         | 
| 321 | 
            +
                        right:0;
         | 
| 322 | 
            +
                        left:auto;
         | 
| 323 | 
            +
                        }
         | 
| 324 | 
            +
                    &.b, &.b.r, &.b.l {
         | 
| 325 | 
            +
                        top:auto;
         | 
| 326 | 
            +
                        bottom:0;
         | 
| 327 | 
            +
                        }
         | 
| 328 | 
            +
                    &.l {
         | 
| 329 | 
            +
                        left:0;
         | 
| 330 | 
            +
                        }
         | 
| 331 | 
            +
                    }
         | 
| 332 | 
            +
             | 
| 333 | 
            +
                footer {
         | 
| 334 | 
            +
                    position:absolute;
         | 
| 335 | 
            +
                    left:0;
         | 
| 336 | 
            +
                    right:0;
         | 
| 337 | 
            +
                    bottom:-$height;
         | 
| 338 | 
            +
                    z-index:1;
         | 
| 339 | 
            +
                    display:none;
         | 
| 340 | 
            +
                    padding:21px $right 4px $left;
         | 
| 341 | 
            +
                    background:$yellow;
         | 
| 342 | 
            +
                    box-shadow:0 0 0 2px rgba(#000, 0.05);
         | 
| 343 | 
            +
                    transition:bottom 0.3s;
         | 
| 344 | 
            +
                    p {
         | 
| 345 | 
            +
                        margin:0 0 16px;
         | 
| 346 | 
            +
                        }
         | 
| 347 | 
            +
                    mark {
         | 
| 348 | 
            +
                        background:rgba(#FFF, 0.7);
         | 
| 349 | 
            +
                        }
         | 
| 350 | 
            +
                    }
         | 
| 351 | 
            +
                &:hover footer {
         | 
| 352 | 
            +
                    bottom:0;
         | 
| 353 | 
            +
                    }
         | 
| 354 | 
            +
                }
         | 
| 355 | 
            +
             | 
| 356 | 
            +
            @media screen {
         | 
| 357 | 
            +
                .shower.list {
         | 
| 358 | 
            +
                    position:absolute;
         | 
| 359 | 
            +
                    clip:rect(0, auto, auto, 0); // Having fun with IE10
         | 
| 360 | 
            +
                    padding:50px 0 50px 50px;
         | 
| 361 | 
            +
                    background:desaturate(lighten($color, 30%), 60%);
         | 
| 362 | 
            +
                    text-align:center;
         | 
| 363 | 
            +
             | 
| 364 | 
            +
                    .caption,
         | 
| 365 | 
            +
                    .badge {
         | 
| 366 | 
            +
                        display:block;
         | 
| 367 | 
            +
                    }
         | 
| 368 | 
            +
             | 
| 369 | 
            +
                    .slide {
         | 
| 370 | 
            +
                        // Gap between slides
         | 
| 371 | 
            +
                        $gap:50px;
         | 
| 372 | 
            +
                        position:relative;
         | 
| 373 | 
            +
                        top:$height/2 - $gap;
         | 
| 374 | 
            +
                        display:inline-block;
         | 
| 375 | 
            +
                        margin:($gap - $height/2) ($gap - $width/2) 0 0;
         | 
| 376 | 
            +
                        text-align:left;
         | 
| 377 | 
            +
                        transform-origin:0 0;
         | 
| 378 | 
            +
                        transform:scale(0.5);
         | 
| 379 | 
            +
                        @media (max-width:$break) {
         | 
| 380 | 
            +
                            top:$height/2 + $height/4 - $gap;
         | 
| 381 | 
            +
                            margin:($gap - ($height/2 + $height/4)) ($gap - ($width/2 + $width/4)) 0 0;
         | 
| 382 | 
            +
                            transform:scale(0.25);
         | 
| 383 | 
            +
                            }
         | 
| 384 | 
            +
             | 
| 385 | 
            +
                        &:before {
         | 
| 386 | 
            +
                            position:absolute;
         | 
| 387 | 
            +
                            top:0;
         | 
| 388 | 
            +
                            left:0;
         | 
| 389 | 
            +
                            z-index:-1;
         | 
| 390 | 
            +
                            width:$width/2;
         | 
| 391 | 
            +
                            height:$height/2;
         | 
| 392 | 
            +
                            box-shadow:0 0 0 1px #DDD;
         | 
| 393 | 
            +
                            content:'';
         | 
| 394 | 
            +
                            transform-origin:0 0;
         | 
| 395 | 
            +
                            transform:scale(2);
         | 
| 396 | 
            +
                            @media (max-width:$break) {
         | 
| 397 | 
            +
                                width:$width/4;
         | 
| 398 | 
            +
                                height:$height/4;
         | 
| 399 | 
            +
                                transform:scale(4);
         | 
| 400 | 
            +
                                }
         | 
| 401 | 
            +
                            }
         | 
| 402 | 
            +
             | 
| 403 | 
            +
                        &:after {
         | 
| 404 | 
            +
                            top:100%;
         | 
| 405 | 
            +
                            bottom:auto;
         | 
| 406 | 
            +
                            padding-top:50px;
         | 
| 407 | 
            +
                            @media (max-width:$break) {
         | 
| 408 | 
            +
                                width:$width/2;
         | 
| 409 | 
            +
                                transform-origin:0 0;
         | 
| 410 | 
            +
                                transform:scale(2);
         | 
| 411 | 
            +
                                }
         | 
| 412 | 
            +
                            }
         | 
| 413 | 
            +
             | 
| 414 | 
            +
                        &:hover:before {
         | 
| 415 | 
            +
                            box-shadow:
         | 
| 416 | 
            +
                                0 0 0 1px #EEE,
         | 
| 417 | 
            +
                                0 0 0 12px rgba(#FFF, 0.5);
         | 
| 418 | 
            +
                            }
         | 
| 419 | 
            +
             | 
| 420 | 
            +
                        &:target {
         | 
| 421 | 
            +
                            &:before {
         | 
| 422 | 
            +
                                box-shadow:
         | 
| 423 | 
            +
                                    0 0 10px 0 darken($color, 5%),
         | 
| 424 | 
            +
                                    0 0 0 12px $color;
         | 
| 425 | 
            +
                                }
         | 
| 426 | 
            +
                            &:after {
         | 
| 427 | 
            +
                                color:$color;
         | 
| 428 | 
            +
                                }
         | 
| 429 | 
            +
                            }
         | 
| 430 | 
            +
             | 
| 431 | 
            +
                        > div {
         | 
| 432 | 
            +
                            &:before {
         | 
| 433 | 
            +
                                position:absolute;
         | 
| 434 | 
            +
                                top:0;
         | 
| 435 | 
            +
                                right:0;
         | 
| 436 | 
            +
                                bottom:0;
         | 
| 437 | 
            +
                                left:0;
         | 
| 438 | 
            +
                                z-index:2;
         | 
| 439 | 
            +
                                content:'';
         | 
| 440 | 
            +
                            }
         | 
| 441 | 
            +
                        }
         | 
| 442 | 
            +
                
         | 
| 443 | 
            +
                        &.cover,
         | 
| 444 | 
            +
                        &.shout {
         | 
| 445 | 
            +
                            &:after {
         | 
| 446 | 
            +
                                content:counter(slide);
         | 
| 447 | 
            +
                                }
         | 
| 448 | 
            +
                            }
         | 
| 449 | 
            +
                        // Notes
         | 
| 450 | 
            +
                        footer {
         | 
| 451 | 
            +
                            display:block;
         | 
| 452 | 
            +
                            }
         | 
| 453 | 
            +
                        }
         | 
| 454 | 
            +
                    }
         | 
| 455 | 
            +
                
         | 
| 456 | 
            +
                .shower.full {
         | 
| 457 | 
            +
                    position:absolute;
         | 
| 458 | 
            +
                    top:50%;
         | 
| 459 | 
            +
                    left:50%;
         | 
| 460 | 
            +
                    overflow:hidden;
         | 
| 461 | 
            +
                    margin:(-$height/2) 0 0 (-$width/2);
         | 
| 462 | 
            +
                    width:$width;
         | 
| 463 | 
            +
                    height:$height;
         | 
| 464 | 
            +
                    background:#000;
         | 
| 465 | 
            +
                
         | 
| 466 | 
            +
                    &.debug:after {
         | 
| 467 | 
            +
                        position:absolute;
         | 
| 468 | 
            +
                        top:0;
         | 
| 469 | 
            +
                        right:0;
         | 
| 470 | 
            +
                        bottom:0;
         | 
| 471 | 
            +
                        left:0;
         | 
| 472 | 
            +
                        z-index:2;
         | 
| 473 | 
            +
                        background:url(../images/grid-#{$ratio}.svg) no-repeat;
         | 
| 474 | 
            +
                        content:'';
         | 
| 475 | 
            +
                    }
         | 
| 476 | 
            +
                    
         | 
| 477 | 
            +
                    .region {
         | 
| 478 | 
            +
                        @include offscreen;
         | 
| 479 | 
            +
                        display:block;
         | 
| 480 | 
            +
                    }
         | 
| 481 | 
            +
                    
         | 
| 482 | 
            +
                    .slide {
         | 
| 483 | 
            +
                        position:absolute;
         | 
| 484 | 
            +
                        top:0;
         | 
| 485 | 
            +
                        left:0;
         | 
| 486 | 
            +
                        margin-left:150%;
         | 
| 487 | 
            +
                        
         | 
| 488 | 
            +
                        .next {
         | 
| 489 | 
            +
                            visibility:hidden;
         | 
| 490 | 
            +
                            &.active {
         | 
| 491 | 
            +
                                visibility:visible;
         | 
| 492 | 
            +
                                }
         | 
| 493 | 
            +
                            }
         | 
| 494 | 
            +
                    
         | 
| 495 | 
            +
                        &:target {
         | 
| 496 | 
            +
                            margin:0;
         | 
| 497 | 
            +
                            }
         | 
| 498 | 
            +
                    
         | 
| 499 | 
            +
                        &.shout {
         | 
| 500 | 
            +
                            &.right, &.up {
         | 
| 501 | 
            +
                                h2 {
         | 
| 502 | 
            +
                                    opacity:0;
         | 
| 503 | 
            +
                                    transition:all 0.4s ease-out;
         | 
| 504 | 
            +
                                    }
         | 
| 505 | 
            +
                                &:target h2 {
         | 
| 506 | 
            +
                                    opacity:1;
         | 
| 507 | 
            +
                                    transform:translateX(0) translateY(-50%);
         | 
| 508 | 
            +
                                    }
         | 
| 509 | 
            +
                                }
         | 
| 510 | 
            +
                            &.right h2 {
         | 
| 511 | 
            +
                                transform:translateX(-100%) translateY(-50%);
         | 
| 512 | 
            +
                                }
         | 
| 513 | 
            +
                            &.up h2 {
         | 
| 514 | 
            +
                                transform:translateX(0) translateY(100%);
         | 
| 515 | 
            +
                                }
         | 
| 516 | 
            +
                            }
         | 
| 517 | 
            +
                        }
         | 
| 518 | 
            +
                    
         | 
| 519 | 
            +
                    .progress {
         | 
| 520 | 
            +
                        position:absolute;
         | 
| 521 | 
            +
                        bottom:0;
         | 
| 522 | 
            +
                        left:0;
         | 
| 523 | 
            +
                        z-index:1;
         | 
| 524 | 
            +
                        width:0;
         | 
| 525 | 
            +
                        height:8px;
         | 
| 526 | 
            +
                        background:$color;
         | 
| 527 | 
            +
                        transition:width 0.2s linear;
         | 
| 528 | 
            +
                        }
         | 
| 529 | 
            +
                    }
         | 
| 530 | 
            +
                }
         | 
| 531 | 
            +
             | 
| 532 | 
            +
            @page {
         | 
| 533 | 
            +
                margin:0;
         | 
| 534 | 
            +
                size:$width $height;
         | 
| 535 | 
            +
            }
         |