gitextract_x_yw3dwn/ ├── .github/ │ ├── CODEOWNERS │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── app-box/ │ ├── README.md │ ├── app-box.js │ └── demo/ │ ├── document-scroll.html │ ├── index.html │ └── scrolling-region.html ├── app-drawer/ │ ├── README.md │ ├── app-drawer.js │ ├── demo/ │ │ ├── index.html │ │ ├── left-drawer.html │ │ └── right-drawer.html │ └── test/ │ ├── app-drawer.html │ └── index.html ├── app-drawer-layout/ │ ├── README.md │ ├── app-drawer-layout.js │ ├── demo/ │ │ └── index.html │ └── test/ │ ├── app-drawer-layout.html │ └── index.html ├── app-grid/ │ ├── README.md │ ├── app-grid-style.js │ ├── demo/ │ │ ├── aspect-ratio.html │ │ ├── flickr-grid-layout.html │ │ ├── index.html │ │ ├── md-grid-layout.html │ │ └── simple-responsive-grid.html │ └── test/ │ ├── app-grid-1.html │ ├── app-grid-2.html │ ├── app-grid-3.html │ └── index.html ├── app-header/ │ ├── README.md │ ├── app-header.js │ ├── demo/ │ │ ├── blend-background-1.html │ │ ├── blend-background-2.html │ │ ├── blend-background-3.html │ │ ├── contacts.html │ │ ├── custom-sticky-element-1.html │ │ ├── custom-sticky-element-2.html │ │ ├── give.html │ │ ├── index.html │ │ ├── music.html │ │ ├── no-effects.html │ │ └── notes.html │ └── test/ │ ├── app-header.html │ └── index.html ├── app-header-layout/ │ ├── README.md │ ├── app-header-layout.js │ ├── demo/ │ │ ├── footer.html │ │ ├── index.html │ │ ├── music.html │ │ ├── scrolling-region.html │ │ └── simple.html │ └── test/ │ ├── app-header-layout.html │ └── index.html ├── app-layout-behavior/ │ └── app-layout-behavior.js ├── app-layout.js ├── app-scroll-effects/ │ ├── README.md │ ├── app-scroll-effects-behavior.js │ ├── app-scroll-effects.js │ ├── effects/ │ │ ├── blend-background.js │ │ ├── fade-background.js │ │ ├── material.js │ │ ├── parallax-background.js │ │ ├── resize-snapped-title.js │ │ ├── resize-title.js │ │ └── waterfall.js │ └── test/ │ ├── app-scroll-effects-behavior.html │ ├── blend-background.html │ ├── fade-background.html │ ├── index.html │ ├── parallax-background.html │ ├── resize-snapped-title.html │ ├── resize-title.html │ ├── utils.js │ ├── waterfall.html │ └── x-container.js ├── app-toolbar/ │ ├── README.md │ ├── app-toolbar.js │ ├── demo/ │ │ └── index.html │ └── test/ │ ├── app-toolbar.html │ └── index.html ├── bower.json ├── demo/ │ ├── contacts.json │ ├── demo1.html │ ├── demo2.html │ ├── demo3.html │ ├── demo4.html │ ├── demo5.html │ ├── demo6.html │ ├── demo7.html │ ├── index.html │ └── sample-content.js ├── formatconfig.json ├── gen-tsd.json ├── helpers/ │ ├── helpers.js │ └── test/ │ ├── index.html │ ├── register-effect.html │ └── scroll.html ├── manifest.json ├── package.json ├── patterns/ │ ├── expand-card/ │ │ └── index.html │ ├── md-responsive-toolbar/ │ │ └── index.html │ └── transform-navigation/ │ ├── index.html │ └── x-app.js ├── templates/ │ ├── getting-started/ │ │ ├── index.html │ │ ├── package.json │ │ └── x-app.js │ ├── landing-page/ │ │ ├── index.html │ │ ├── package.json │ │ └── x-app.js │ ├── pesto/ │ │ ├── data/ │ │ │ └── recipes.json │ │ ├── index.html │ │ ├── manifest.json │ │ ├── package.json │ │ └── src/ │ │ ├── app-icons.js │ │ ├── recipe-app.js │ │ ├── recipe-detail.js │ │ └── recipe-list.js │ ├── publishing/ │ │ ├── data/ │ │ │ └── articles.json │ │ ├── index.html │ │ ├── manifest.json │ │ ├── package.json │ │ └── src/ │ │ ├── app-icons.js │ │ ├── article-detail.js │ │ ├── article-headline.js │ │ ├── blog-app.js │ │ └── two-columns-grid.js │ ├── shrine/ │ │ ├── data/ │ │ │ ├── featured.json │ │ │ └── items.json │ │ ├── index.html │ │ ├── manifest.json │ │ ├── package.json │ │ └── src/ │ │ ├── shrine-app.js │ │ ├── shrine-detail.js │ │ ├── shrine-featured-item.js │ │ ├── shrine-item.js │ │ ├── shrine-list.js │ │ └── shrine-simple-item.js │ └── test-drive/ │ ├── index.html │ ├── package.json │ └── test-app.js ├── test/ │ └── index.html └── wct.conf.json