├── .gitignore ├── .gitpod.dockerfile ├── .gitpod.yml ├── .theia ├── client.cnf ├── init_tasks.sh ├── launch.json ├── mysql.cnf ├── settings.json ├── snippets.json └── start_mysql.sh ├── README.md ├── assets ├── README_media │ ├── Css_Validator.pdf │ ├── HTML_Validator.pdf │ ├── Jira.PNG │ ├── Mockup.PNG │ ├── colours.jpeg │ ├── desktop.pdf │ ├── lighthouse.PNG │ ├── mobile.pdf │ ├── tablet.pdf │ ├── test.png │ └── users.xlsx ├── audio │ ├── click.mp3 │ ├── correct.wav │ ├── final_success.wav │ ├── incorrect.wav │ ├── noPoints.wav │ └── tada.mp3 ├── css │ └── style.css ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── images │ ├── logo.png │ ├── logoQuiz.jpg │ └── w&b.jpg └── js │ ├── fetch.js │ ├── game.js │ ├── settings.js │ └── user.js └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.gitpod.dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.theia/client.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.theia/client.cnf -------------------------------------------------------------------------------- /.theia/init_tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.theia/init_tasks.sh -------------------------------------------------------------------------------- /.theia/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.theia/launch.json -------------------------------------------------------------------------------- /.theia/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.theia/mysql.cnf -------------------------------------------------------------------------------- /.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.theia/settings.json -------------------------------------------------------------------------------- /.theia/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.theia/snippets.json -------------------------------------------------------------------------------- /.theia/start_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/.theia/start_mysql.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/README.md -------------------------------------------------------------------------------- /assets/README_media/Css_Validator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/Css_Validator.pdf -------------------------------------------------------------------------------- /assets/README_media/HTML_Validator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/HTML_Validator.pdf -------------------------------------------------------------------------------- /assets/README_media/Jira.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/Jira.PNG -------------------------------------------------------------------------------- /assets/README_media/Mockup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/Mockup.PNG -------------------------------------------------------------------------------- /assets/README_media/colours.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/colours.jpeg -------------------------------------------------------------------------------- /assets/README_media/desktop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/desktop.pdf -------------------------------------------------------------------------------- /assets/README_media/lighthouse.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/lighthouse.PNG -------------------------------------------------------------------------------- /assets/README_media/mobile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/mobile.pdf -------------------------------------------------------------------------------- /assets/README_media/tablet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/tablet.pdf -------------------------------------------------------------------------------- /assets/README_media/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/test.png -------------------------------------------------------------------------------- /assets/README_media/users.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/README_media/users.xlsx -------------------------------------------------------------------------------- /assets/audio/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/audio/click.mp3 -------------------------------------------------------------------------------- /assets/audio/correct.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/audio/correct.wav -------------------------------------------------------------------------------- /assets/audio/final_success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/audio/final_success.wav -------------------------------------------------------------------------------- /assets/audio/incorrect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/audio/incorrect.wav -------------------------------------------------------------------------------- /assets/audio/noPoints.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/audio/noPoints.wav -------------------------------------------------------------------------------- /assets/audio/tada.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/audio/tada.mp3 -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/logoQuiz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/images/logoQuiz.jpg -------------------------------------------------------------------------------- /assets/images/w&b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/images/w&b.jpg -------------------------------------------------------------------------------- /assets/js/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/js/fetch.js -------------------------------------------------------------------------------- /assets/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/js/game.js -------------------------------------------------------------------------------- /assets/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/js/settings.js -------------------------------------------------------------------------------- /assets/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/assets/js/user.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszniechwiej/MS-2-Quiz-game/HEAD/index.html --------------------------------------------------------------------------------