├── .gitignore ├── README.md ├── app.js ├── design ├── active-states.jpg ├── desktop-design.jpg ├── desktop-preview.jpg ├── desktop-thank-you-state.jpg ├── mobile-design.jpg └── mobile-thank-you-state.jpg ├── images ├── favicon-32x32.png ├── icon-star.svg └── illustration-thank-you.svg ├── index.html ├── style-guide.md └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/app.js -------------------------------------------------------------------------------- /design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/design/active-states.jpg -------------------------------------------------------------------------------- /design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/design/desktop-design.jpg -------------------------------------------------------------------------------- /design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/design/desktop-preview.jpg -------------------------------------------------------------------------------- /design/desktop-thank-you-state.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/design/desktop-thank-you-state.jpg -------------------------------------------------------------------------------- /design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/design/mobile-design.jpg -------------------------------------------------------------------------------- /design/mobile-thank-you-state.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/design/mobile-thank-you-state.jpg -------------------------------------------------------------------------------- /images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/images/favicon-32x32.png -------------------------------------------------------------------------------- /images/icon-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/images/icon-star.svg -------------------------------------------------------------------------------- /images/illustration-thank-you.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/images/illustration-thank-you.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/index.html -------------------------------------------------------------------------------- /style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/style-guide.md -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/interactive-rating-component/HEAD/style.css --------------------------------------------------------------------------------