├── .gitignore ├── README.md ├── images ├── bg-triangle.svg ├── icon-close.svg ├── icon-paper.svg ├── icon-rock.svg ├── icon-scissors.svg └── image-rules.svg ├── index.html ├── scripts.js └── styles ├── mixins.scss ├── reset.css ├── styles.css ├── styles.css.map └── styles.scss /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/README.md -------------------------------------------------------------------------------- /images/bg-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/images/bg-triangle.svg -------------------------------------------------------------------------------- /images/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/images/icon-close.svg -------------------------------------------------------------------------------- /images/icon-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/images/icon-paper.svg -------------------------------------------------------------------------------- /images/icon-rock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/images/icon-rock.svg -------------------------------------------------------------------------------- /images/icon-scissors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/images/icon-scissors.svg -------------------------------------------------------------------------------- /images/image-rules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/images/image-rules.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/index.html -------------------------------------------------------------------------------- /scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/scripts.js -------------------------------------------------------------------------------- /styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/styles/mixins.scss -------------------------------------------------------------------------------- /styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/styles/reset.css -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/styles/styles.css -------------------------------------------------------------------------------- /styles/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/styles/styles.css.map -------------------------------------------------------------------------------- /styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedabusrea/YT-rock-paper-scissors-game/HEAD/styles/styles.scss --------------------------------------------------------------------------------