├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── documentation-request.md │ └── error-in-documentation.md └── workflows │ └── pull_request.yml ├── .gitignore ├── .gitlab-ci.yml ├── .htaccess ├── 404.md ├── README.md ├── _config.yml ├── academy ├── animation │ ├── animation.md │ ├── color.md │ ├── crossfade.md │ ├── float.md │ ├── keyframe.md │ ├── physics.md │ ├── repeatable.md │ ├── singleValue.md │ ├── snap.md │ ├── transition.md │ └── tween.md ├── core │ ├── core.md │ ├── double_tap.md │ ├── gesture.md │ ├── long_press.md │ ├── media │ │ ├── opacity.png │ │ └── shadow.png │ ├── opacity.md │ ├── popup.md │ ├── shadow.md │ └── tap.md ├── foundation │ ├── androidview.md │ ├── border.md │ ├── clickable.md │ ├── foundation.md │ ├── media │ │ ├── androidview.png │ │ ├── border.png │ │ ├── border_brush.png │ │ ├── cut_corner_shape.png │ │ ├── cut_corner_shape_dimensions.png │ │ ├── rounded_corner_shape.png │ │ └── rounded_corner_shape_dimensions.png │ ├── shape.md │ ├── text.md │ └── text_style.md ├── framework │ └── framework.md ├── graphics │ ├── color.md │ └── graphics.md ├── layout │ ├── arrangement.md │ ├── column.md │ ├── layout.md │ ├── media │ │ ├── column.png │ │ ├── column_arrangement.png │ │ ├── column_gravity.png │ │ ├── row.png │ │ ├── row_arrangement.png │ │ ├── row_gravity.png │ │ ├── spacer.png │ │ ├── stack_children.png │ │ └── stack_overlap.png │ ├── row.md │ ├── spacer.md │ └── stack.md ├── material │ ├── alert_dialog.md │ ├── bottom_navigation.md │ ├── bottomappbar.md │ ├── button.md │ ├── card.md │ ├── checkbox.md │ ├── circular_progress.md │ ├── divider.md │ ├── filled_text_field.md │ ├── floating_action_button.md │ ├── icon_button.md │ ├── ime_action.md │ ├── keyboard_type.md │ ├── linear_progress.md │ ├── material.md │ ├── media │ │ ├── alert_dialog.png │ │ ├── bottom_app_bar.png │ │ ├── bottom_app_bar_fab.png │ │ ├── bottom_app_bar_styled.png │ │ ├── bottom_nav.png │ │ ├── bottom_nav_no_labels.png │ │ ├── bottom_nav_styled.png │ │ ├── button.png │ │ ├── button_border.png │ │ ├── button_disabled.png │ │ ├── button_shape.png │ │ ├── card.png │ │ ├── card_background.png │ │ ├── card_border.png │ │ ├── card_children.png │ │ ├── card_colored_content.png │ │ ├── card_elevation.png │ │ ├── card_shape.png │ │ ├── checkbox.png │ │ ├── colored_checkbox.png │ │ ├── colored_radiobutton.png │ │ ├── divider.png │ │ ├── divider_color.png │ │ ├── divider_indent.png │ │ ├── divider_thickness.png │ │ ├── fab.png │ │ ├── fab_colored.png │ │ ├── fab_elevation.png │ │ ├── fab_shape.png │ │ ├── linear_progress_one.png │ │ ├── linear_progress_two.png │ │ ├── progress_circular.png │ │ ├── progress_circular_colored.png │ │ ├── progress_circular_manual.png │ │ ├── radiobutton.png │ │ ├── scaffold_docked_fab.png │ │ ├── scaffold_fab.png │ │ ├── scaffold_navigation.png │ │ ├── scaffold_top_app_bar.png │ │ ├── selected_radiobutton.png │ │ ├── slider.png │ │ ├── slider_colored.png │ │ ├── slider_stepped.png │ │ ├── snackbar.png │ │ ├── snackbar_action.png │ │ └── snackbar_new_line.png │ ├── progress.md │ ├── radiobutton.md │ ├── scaffold.md │ ├── slider.md │ ├── snackbar.md │ ├── switch.md │ ├── tab_bar.md │ ├── text_field.md │ ├── text_input.md │ ├── top_app_bar.md │ └── tristatecheckbox.md ├── res │ ├── color.md │ ├── drawable.md │ ├── primitive.md │ ├── res.md │ └── strings.md ├── test │ ├── actions.md │ ├── assertions.md │ ├── checked.md │ ├── click.md │ ├── click_action.md │ ├── composeTestRule.md │ ├── displayed.md │ ├── equality.md │ ├── finders.md │ ├── hidden.md │ ├── selected.md │ ├── swipe_actions.md │ ├── test.md │ └── text_action.md ├── text │ └── placeholder.md ├── tooling │ └── tooling.md └── unit │ ├── dp.md │ └── unit.md ├── compose_academy.png ├── default.md ├── designs └── favicon.psd ├── documentation ├── 404 │ └── index.html ├── .htaccess ├── configuration │ └── index.html ├── deployment │ └── index.html ├── doks-theme │ └── assets │ │ ├── css │ │ └── style.css │ │ ├── fonts │ │ └── icons │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ └── selection.json │ │ ├── images │ │ └── layout │ │ │ ├── logo-footer.png │ │ │ └── logo.png │ │ └── js │ │ ├── scripts.js │ │ ├── scripts.min.js │ │ └── vendor │ │ ├── bootstrap │ │ ├── affix.js │ │ ├── affix.min.js │ │ ├── scrollspy.js │ │ └── scrollspy.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── matchHeight.js │ │ └── matchHeight.min.js ├── favicon.ico ├── getting-started │ └── index.html ├── index.html ├── manage-content │ └── index.html └── theme-updates │ └── index.html ├── doks-theme ├── _includes │ ├── comments.html │ ├── google-analytics.html │ ├── micro-nav.html │ ├── site-footer.html │ ├── site-head.html │ └── site-header.html ├── _layouts │ ├── default.html │ ├── error-404.html │ └── homepage.html ├── _sass │ ├── _variables.scss │ ├── components │ │ ├── _callout.scss │ │ ├── _example.scss │ │ ├── _hero-subheader-default.scss │ │ ├── _hero-subheader.scss │ │ ├── _micro-nav.scss │ │ ├── _nav-grid.scss │ │ ├── _page-nav.scss │ │ ├── _sections-list.scss │ │ ├── _site-footer.scss │ │ ├── _site-header.scss │ │ ├── _social-list.scss │ │ └── _title-anchor-link.scss │ ├── generic │ │ ├── _base.scss │ │ ├── _code.scss │ │ └── _normalize.scss │ ├── objects │ │ ├── _buttons.scss │ │ ├── _content.scss │ │ ├── _error-404.scss │ │ ├── _grid.scss │ │ ├── _icons.scss │ │ ├── _section-default.scss │ │ └── _section.scss │ ├── themes │ │ ├── _green.scss │ │ ├── _purple.scss │ │ ├── _red.scss │ │ └── _yellow.scss │ ├── tools │ │ ├── _clearfix.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hyperlinks.scss │ │ ├── _lists.scss │ │ ├── _prefixer.scss │ │ └── _responsive-visibility.scss │ └── utilities │ │ ├── _alignment.scss │ │ └── _visibility.scss └── assets │ ├── css │ └── style.scss │ ├── fonts │ └── icons │ │ ├── icons.svg │ │ ├── icons.ttf │ │ ├── icons.woff │ │ └── selection.json │ ├── images │ └── layout │ │ ├── logo-footer.png │ │ └── logo.png │ └── js │ ├── scripts.js │ ├── scripts.min.js │ └── vendor │ ├── bootstrap │ ├── affix.js │ ├── affix.min.js │ ├── scrollspy.js │ └── scrollspy.min.js │ ├── jquery.js │ ├── jquery.min.js │ ├── matchHeight.js │ └── matchHeight.min.js ├── favicon.ico └── index.md /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/.github/ISSUE_TEMPLATE/documentation-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/error-in-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/.github/ISSUE_TEMPLATE/error-in-documentation.md -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | ErrorDocument 404 /404/index.html 2 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/404.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/_config.yml -------------------------------------------------------------------------------- /academy/animation/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/animation.md -------------------------------------------------------------------------------- /academy/animation/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/color.md -------------------------------------------------------------------------------- /academy/animation/crossfade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/crossfade.md -------------------------------------------------------------------------------- /academy/animation/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/float.md -------------------------------------------------------------------------------- /academy/animation/keyframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/keyframe.md -------------------------------------------------------------------------------- /academy/animation/physics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/physics.md -------------------------------------------------------------------------------- /academy/animation/repeatable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/repeatable.md -------------------------------------------------------------------------------- /academy/animation/singleValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/singleValue.md -------------------------------------------------------------------------------- /academy/animation/snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/snap.md -------------------------------------------------------------------------------- /academy/animation/transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/transition.md -------------------------------------------------------------------------------- /academy/animation/tween.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/animation/tween.md -------------------------------------------------------------------------------- /academy/core/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/core.md -------------------------------------------------------------------------------- /academy/core/double_tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/double_tap.md -------------------------------------------------------------------------------- /academy/core/gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/gesture.md -------------------------------------------------------------------------------- /academy/core/long_press.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/long_press.md -------------------------------------------------------------------------------- /academy/core/media/opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/media/opacity.png -------------------------------------------------------------------------------- /academy/core/media/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/media/shadow.png -------------------------------------------------------------------------------- /academy/core/opacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/opacity.md -------------------------------------------------------------------------------- /academy/core/popup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/popup.md -------------------------------------------------------------------------------- /academy/core/shadow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/shadow.md -------------------------------------------------------------------------------- /academy/core/tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/core/tap.md -------------------------------------------------------------------------------- /academy/foundation/androidview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/androidview.md -------------------------------------------------------------------------------- /academy/foundation/border.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/border.md -------------------------------------------------------------------------------- /academy/foundation/clickable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/clickable.md -------------------------------------------------------------------------------- /academy/foundation/foundation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/foundation.md -------------------------------------------------------------------------------- /academy/foundation/media/androidview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/media/androidview.png -------------------------------------------------------------------------------- /academy/foundation/media/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/media/border.png -------------------------------------------------------------------------------- /academy/foundation/media/border_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/media/border_brush.png -------------------------------------------------------------------------------- /academy/foundation/media/cut_corner_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/media/cut_corner_shape.png -------------------------------------------------------------------------------- /academy/foundation/media/cut_corner_shape_dimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/media/cut_corner_shape_dimensions.png -------------------------------------------------------------------------------- /academy/foundation/media/rounded_corner_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/media/rounded_corner_shape.png -------------------------------------------------------------------------------- /academy/foundation/media/rounded_corner_shape_dimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/media/rounded_corner_shape_dimensions.png -------------------------------------------------------------------------------- /academy/foundation/shape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/shape.md -------------------------------------------------------------------------------- /academy/foundation/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/text.md -------------------------------------------------------------------------------- /academy/foundation/text_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/foundation/text_style.md -------------------------------------------------------------------------------- /academy/framework/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/framework/framework.md -------------------------------------------------------------------------------- /academy/graphics/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/graphics/color.md -------------------------------------------------------------------------------- /academy/graphics/graphics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/graphics/graphics.md -------------------------------------------------------------------------------- /academy/layout/arrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/arrangement.md -------------------------------------------------------------------------------- /academy/layout/column.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/column.md -------------------------------------------------------------------------------- /academy/layout/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/layout.md -------------------------------------------------------------------------------- /academy/layout/media/column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/media/column.png -------------------------------------------------------------------------------- /academy/layout/media/column_arrangement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/media/column_arrangement.png -------------------------------------------------------------------------------- /academy/layout/media/column_gravity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/media/column_gravity.png -------------------------------------------------------------------------------- /academy/layout/media/row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/media/row.png -------------------------------------------------------------------------------- /academy/layout/media/row_arrangement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/media/row_arrangement.png -------------------------------------------------------------------------------- /academy/layout/media/row_gravity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/media/row_gravity.png -------------------------------------------------------------------------------- /academy/layout/media/spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/media/spacer.png -------------------------------------------------------------------------------- /academy/layout/media/stack_children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/media/stack_children.png -------------------------------------------------------------------------------- /academy/layout/media/stack_overlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/media/stack_overlap.png -------------------------------------------------------------------------------- /academy/layout/row.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/row.md -------------------------------------------------------------------------------- /academy/layout/spacer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/spacer.md -------------------------------------------------------------------------------- /academy/layout/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/layout/stack.md -------------------------------------------------------------------------------- /academy/material/alert_dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/alert_dialog.md -------------------------------------------------------------------------------- /academy/material/bottom_navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/bottom_navigation.md -------------------------------------------------------------------------------- /academy/material/bottomappbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/bottomappbar.md -------------------------------------------------------------------------------- /academy/material/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/button.md -------------------------------------------------------------------------------- /academy/material/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/card.md -------------------------------------------------------------------------------- /academy/material/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/checkbox.md -------------------------------------------------------------------------------- /academy/material/circular_progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/circular_progress.md -------------------------------------------------------------------------------- /academy/material/divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/divider.md -------------------------------------------------------------------------------- /academy/material/filled_text_field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/filled_text_field.md -------------------------------------------------------------------------------- /academy/material/floating_action_button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/floating_action_button.md -------------------------------------------------------------------------------- /academy/material/icon_button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/icon_button.md -------------------------------------------------------------------------------- /academy/material/ime_action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/ime_action.md -------------------------------------------------------------------------------- /academy/material/keyboard_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/keyboard_type.md -------------------------------------------------------------------------------- /academy/material/linear_progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/linear_progress.md -------------------------------------------------------------------------------- /academy/material/material.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/material.md -------------------------------------------------------------------------------- /academy/material/media/alert_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/alert_dialog.png -------------------------------------------------------------------------------- /academy/material/media/bottom_app_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/bottom_app_bar.png -------------------------------------------------------------------------------- /academy/material/media/bottom_app_bar_fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/bottom_app_bar_fab.png -------------------------------------------------------------------------------- /academy/material/media/bottom_app_bar_styled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/bottom_app_bar_styled.png -------------------------------------------------------------------------------- /academy/material/media/bottom_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/bottom_nav.png -------------------------------------------------------------------------------- /academy/material/media/bottom_nav_no_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/bottom_nav_no_labels.png -------------------------------------------------------------------------------- /academy/material/media/bottom_nav_styled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/bottom_nav_styled.png -------------------------------------------------------------------------------- /academy/material/media/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/button.png -------------------------------------------------------------------------------- /academy/material/media/button_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/button_border.png -------------------------------------------------------------------------------- /academy/material/media/button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/button_disabled.png -------------------------------------------------------------------------------- /academy/material/media/button_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/button_shape.png -------------------------------------------------------------------------------- /academy/material/media/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/card.png -------------------------------------------------------------------------------- /academy/material/media/card_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/card_background.png -------------------------------------------------------------------------------- /academy/material/media/card_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/card_border.png -------------------------------------------------------------------------------- /academy/material/media/card_children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/card_children.png -------------------------------------------------------------------------------- /academy/material/media/card_colored_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/card_colored_content.png -------------------------------------------------------------------------------- /academy/material/media/card_elevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/card_elevation.png -------------------------------------------------------------------------------- /academy/material/media/card_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/card_shape.png -------------------------------------------------------------------------------- /academy/material/media/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/checkbox.png -------------------------------------------------------------------------------- /academy/material/media/colored_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/colored_checkbox.png -------------------------------------------------------------------------------- /academy/material/media/colored_radiobutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/colored_radiobutton.png -------------------------------------------------------------------------------- /academy/material/media/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/divider.png -------------------------------------------------------------------------------- /academy/material/media/divider_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/divider_color.png -------------------------------------------------------------------------------- /academy/material/media/divider_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/divider_indent.png -------------------------------------------------------------------------------- /academy/material/media/divider_thickness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/divider_thickness.png -------------------------------------------------------------------------------- /academy/material/media/fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/fab.png -------------------------------------------------------------------------------- /academy/material/media/fab_colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/fab_colored.png -------------------------------------------------------------------------------- /academy/material/media/fab_elevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/fab_elevation.png -------------------------------------------------------------------------------- /academy/material/media/fab_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/fab_shape.png -------------------------------------------------------------------------------- /academy/material/media/linear_progress_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/linear_progress_one.png -------------------------------------------------------------------------------- /academy/material/media/linear_progress_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/linear_progress_two.png -------------------------------------------------------------------------------- /academy/material/media/progress_circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/progress_circular.png -------------------------------------------------------------------------------- /academy/material/media/progress_circular_colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/progress_circular_colored.png -------------------------------------------------------------------------------- /academy/material/media/progress_circular_manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/progress_circular_manual.png -------------------------------------------------------------------------------- /academy/material/media/radiobutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/radiobutton.png -------------------------------------------------------------------------------- /academy/material/media/scaffold_docked_fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/scaffold_docked_fab.png -------------------------------------------------------------------------------- /academy/material/media/scaffold_fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/scaffold_fab.png -------------------------------------------------------------------------------- /academy/material/media/scaffold_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/scaffold_navigation.png -------------------------------------------------------------------------------- /academy/material/media/scaffold_top_app_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/scaffold_top_app_bar.png -------------------------------------------------------------------------------- /academy/material/media/selected_radiobutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/selected_radiobutton.png -------------------------------------------------------------------------------- /academy/material/media/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/slider.png -------------------------------------------------------------------------------- /academy/material/media/slider_colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/slider_colored.png -------------------------------------------------------------------------------- /academy/material/media/slider_stepped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/slider_stepped.png -------------------------------------------------------------------------------- /academy/material/media/snackbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/snackbar.png -------------------------------------------------------------------------------- /academy/material/media/snackbar_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/snackbar_action.png -------------------------------------------------------------------------------- /academy/material/media/snackbar_new_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/media/snackbar_new_line.png -------------------------------------------------------------------------------- /academy/material/progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/progress.md -------------------------------------------------------------------------------- /academy/material/radiobutton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/radiobutton.md -------------------------------------------------------------------------------- /academy/material/scaffold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/scaffold.md -------------------------------------------------------------------------------- /academy/material/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/slider.md -------------------------------------------------------------------------------- /academy/material/snackbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/snackbar.md -------------------------------------------------------------------------------- /academy/material/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/switch.md -------------------------------------------------------------------------------- /academy/material/tab_bar.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /academy/material/text_field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/text_field.md -------------------------------------------------------------------------------- /academy/material/text_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/text_input.md -------------------------------------------------------------------------------- /academy/material/top_app_bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/top_app_bar.md -------------------------------------------------------------------------------- /academy/material/tristatecheckbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/material/tristatecheckbox.md -------------------------------------------------------------------------------- /academy/res/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/res/color.md -------------------------------------------------------------------------------- /academy/res/drawable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/res/drawable.md -------------------------------------------------------------------------------- /academy/res/primitive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/res/primitive.md -------------------------------------------------------------------------------- /academy/res/res.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/res/res.md -------------------------------------------------------------------------------- /academy/res/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/res/strings.md -------------------------------------------------------------------------------- /academy/test/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/actions.md -------------------------------------------------------------------------------- /academy/test/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/assertions.md -------------------------------------------------------------------------------- /academy/test/checked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/checked.md -------------------------------------------------------------------------------- /academy/test/click.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/click.md -------------------------------------------------------------------------------- /academy/test/click_action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/click_action.md -------------------------------------------------------------------------------- /academy/test/composeTestRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/composeTestRule.md -------------------------------------------------------------------------------- /academy/test/displayed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/displayed.md -------------------------------------------------------------------------------- /academy/test/equality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/equality.md -------------------------------------------------------------------------------- /academy/test/finders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/finders.md -------------------------------------------------------------------------------- /academy/test/hidden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/hidden.md -------------------------------------------------------------------------------- /academy/test/selected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/selected.md -------------------------------------------------------------------------------- /academy/test/swipe_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/swipe_actions.md -------------------------------------------------------------------------------- /academy/test/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/test.md -------------------------------------------------------------------------------- /academy/test/text_action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/test/text_action.md -------------------------------------------------------------------------------- /academy/text/placeholder.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /academy/tooling/tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/tooling/tooling.md -------------------------------------------------------------------------------- /academy/unit/dp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/unit/dp.md -------------------------------------------------------------------------------- /academy/unit/unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/academy/unit/unit.md -------------------------------------------------------------------------------- /compose_academy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/compose_academy.png -------------------------------------------------------------------------------- /default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/default.md -------------------------------------------------------------------------------- /designs/favicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/designs/favicon.psd -------------------------------------------------------------------------------- /documentation/.htaccess: -------------------------------------------------------------------------------- 1 | ErrorDocument 404 /404/index.html 2 | -------------------------------------------------------------------------------- /documentation/404/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/404/index.html -------------------------------------------------------------------------------- /documentation/configuration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/configuration/index.html -------------------------------------------------------------------------------- /documentation/deployment/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/deployment/index.html -------------------------------------------------------------------------------- /documentation/doks-theme/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/css/style.css -------------------------------------------------------------------------------- /documentation/doks-theme/assets/fonts/icons/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/fonts/icons/icons.svg -------------------------------------------------------------------------------- /documentation/doks-theme/assets/fonts/icons/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/fonts/icons/icons.ttf -------------------------------------------------------------------------------- /documentation/doks-theme/assets/fonts/icons/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/fonts/icons/icons.woff -------------------------------------------------------------------------------- /documentation/doks-theme/assets/fonts/icons/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/fonts/icons/selection.json -------------------------------------------------------------------------------- /documentation/doks-theme/assets/images/layout/logo-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/images/layout/logo-footer.png -------------------------------------------------------------------------------- /documentation/doks-theme/assets/images/layout/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/images/layout/logo.png -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/scripts.js -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/scripts.min.js -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/vendor/bootstrap/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/vendor/bootstrap/affix.js -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/vendor/bootstrap/affix.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/vendor/bootstrap/affix.min.js -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/vendor/bootstrap/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/vendor/bootstrap/scrollspy.js -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/vendor/bootstrap/scrollspy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/vendor/bootstrap/scrollspy.min.js -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/vendor/jquery.js -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/vendor/matchHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/vendor/matchHeight.js -------------------------------------------------------------------------------- /documentation/doks-theme/assets/js/vendor/matchHeight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/doks-theme/assets/js/vendor/matchHeight.min.js -------------------------------------------------------------------------------- /documentation/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/favicon.ico -------------------------------------------------------------------------------- /documentation/getting-started/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/getting-started/index.html -------------------------------------------------------------------------------- /documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/index.html -------------------------------------------------------------------------------- /documentation/manage-content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/manage-content/index.html -------------------------------------------------------------------------------- /documentation/theme-updates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/documentation/theme-updates/index.html -------------------------------------------------------------------------------- /doks-theme/_includes/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_includes/comments.html -------------------------------------------------------------------------------- /doks-theme/_includes/google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_includes/google-analytics.html -------------------------------------------------------------------------------- /doks-theme/_includes/micro-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_includes/micro-nav.html -------------------------------------------------------------------------------- /doks-theme/_includes/site-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_includes/site-footer.html -------------------------------------------------------------------------------- /doks-theme/_includes/site-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_includes/site-head.html -------------------------------------------------------------------------------- /doks-theme/_includes/site-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_includes/site-header.html -------------------------------------------------------------------------------- /doks-theme/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_layouts/default.html -------------------------------------------------------------------------------- /doks-theme/_layouts/error-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_layouts/error-404.html -------------------------------------------------------------------------------- /doks-theme/_layouts/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_layouts/homepage.html -------------------------------------------------------------------------------- /doks-theme/_sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/_variables.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_callout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_callout.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_example.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_hero-subheader-default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_hero-subheader-default.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_hero-subheader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_hero-subheader.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_micro-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_micro-nav.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_nav-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_nav-grid.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_page-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_page-nav.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_sections-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_sections-list.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_site-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_site-footer.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_site-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_site-header.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_social-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_social-list.scss -------------------------------------------------------------------------------- /doks-theme/_sass/components/_title-anchor-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/components/_title-anchor-link.scss -------------------------------------------------------------------------------- /doks-theme/_sass/generic/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/generic/_base.scss -------------------------------------------------------------------------------- /doks-theme/_sass/generic/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/generic/_code.scss -------------------------------------------------------------------------------- /doks-theme/_sass/generic/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/generic/_normalize.scss -------------------------------------------------------------------------------- /doks-theme/_sass/objects/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/objects/_buttons.scss -------------------------------------------------------------------------------- /doks-theme/_sass/objects/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/objects/_content.scss -------------------------------------------------------------------------------- /doks-theme/_sass/objects/_error-404.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/objects/_error-404.scss -------------------------------------------------------------------------------- /doks-theme/_sass/objects/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/objects/_grid.scss -------------------------------------------------------------------------------- /doks-theme/_sass/objects/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/objects/_icons.scss -------------------------------------------------------------------------------- /doks-theme/_sass/objects/_section-default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/objects/_section-default.scss -------------------------------------------------------------------------------- /doks-theme/_sass/objects/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/objects/_section.scss -------------------------------------------------------------------------------- /doks-theme/_sass/themes/_green.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/themes/_green.scss -------------------------------------------------------------------------------- /doks-theme/_sass/themes/_purple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/themes/_purple.scss -------------------------------------------------------------------------------- /doks-theme/_sass/themes/_red.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/themes/_red.scss -------------------------------------------------------------------------------- /doks-theme/_sass/themes/_yellow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/themes/_yellow.scss -------------------------------------------------------------------------------- /doks-theme/_sass/tools/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/tools/_clearfix.scss -------------------------------------------------------------------------------- /doks-theme/_sass/tools/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/tools/_grid-framework.scss -------------------------------------------------------------------------------- /doks-theme/_sass/tools/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/tools/_grid.scss -------------------------------------------------------------------------------- /doks-theme/_sass/tools/_hyperlinks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/tools/_hyperlinks.scss -------------------------------------------------------------------------------- /doks-theme/_sass/tools/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/tools/_lists.scss -------------------------------------------------------------------------------- /doks-theme/_sass/tools/_prefixer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/tools/_prefixer.scss -------------------------------------------------------------------------------- /doks-theme/_sass/tools/_responsive-visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/tools/_responsive-visibility.scss -------------------------------------------------------------------------------- /doks-theme/_sass/utilities/_alignment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/utilities/_alignment.scss -------------------------------------------------------------------------------- /doks-theme/_sass/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/_sass/utilities/_visibility.scss -------------------------------------------------------------------------------- /doks-theme/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/css/style.scss -------------------------------------------------------------------------------- /doks-theme/assets/fonts/icons/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/fonts/icons/icons.svg -------------------------------------------------------------------------------- /doks-theme/assets/fonts/icons/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/fonts/icons/icons.ttf -------------------------------------------------------------------------------- /doks-theme/assets/fonts/icons/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/fonts/icons/icons.woff -------------------------------------------------------------------------------- /doks-theme/assets/fonts/icons/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/fonts/icons/selection.json -------------------------------------------------------------------------------- /doks-theme/assets/images/layout/logo-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/images/layout/logo-footer.png -------------------------------------------------------------------------------- /doks-theme/assets/images/layout/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/images/layout/logo.png -------------------------------------------------------------------------------- /doks-theme/assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/scripts.js -------------------------------------------------------------------------------- /doks-theme/assets/js/scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/scripts.min.js -------------------------------------------------------------------------------- /doks-theme/assets/js/vendor/bootstrap/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/vendor/bootstrap/affix.js -------------------------------------------------------------------------------- /doks-theme/assets/js/vendor/bootstrap/affix.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/vendor/bootstrap/affix.min.js -------------------------------------------------------------------------------- /doks-theme/assets/js/vendor/bootstrap/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/vendor/bootstrap/scrollspy.js -------------------------------------------------------------------------------- /doks-theme/assets/js/vendor/bootstrap/scrollspy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/vendor/bootstrap/scrollspy.min.js -------------------------------------------------------------------------------- /doks-theme/assets/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/vendor/jquery.js -------------------------------------------------------------------------------- /doks-theme/assets/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /doks-theme/assets/js/vendor/matchHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/vendor/matchHeight.js -------------------------------------------------------------------------------- /doks-theme/assets/js/vendor/matchHeight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/doks-theme/assets/js/vendor/matchHeight.min.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hitherejoe/ComposeAcademy/HEAD/index.md --------------------------------------------------------------------------------