├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ └── new_lesson.md ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── favicon.ico ├── images ├── feedback.png ├── lesson.png ├── logo.svg └── task.png ├── index.html ├── pages ├── about.html ├── challenge.html ├── faq.html ├── feedback.html └── learn.html ├── scripts ├── feedback.js └── script.js └── styles ├── about.css ├── faq.css ├── feedback.css ├── hamburger_menu.css └── styles.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/.github/ISSUE_TEMPLATE/new_lesson.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | magicmath.co -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/images/feedback.png -------------------------------------------------------------------------------- /images/lesson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/images/lesson.png -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/images/task.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/index.html -------------------------------------------------------------------------------- /pages/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/pages/about.html -------------------------------------------------------------------------------- /pages/challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/pages/challenge.html -------------------------------------------------------------------------------- /pages/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/pages/faq.html -------------------------------------------------------------------------------- /pages/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/pages/feedback.html -------------------------------------------------------------------------------- /pages/learn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/pages/learn.html -------------------------------------------------------------------------------- /scripts/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/scripts/feedback.js -------------------------------------------------------------------------------- /scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/scripts/script.js -------------------------------------------------------------------------------- /styles/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/styles/about.css -------------------------------------------------------------------------------- /styles/faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/styles/faq.css -------------------------------------------------------------------------------- /styles/feedback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/styles/feedback.css -------------------------------------------------------------------------------- /styles/hamburger_menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/styles/hamburger_menu.css -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingkatty/mathpylearn/HEAD/styles/styles.css --------------------------------------------------------------------------------