├── .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: -------------------------------------------------------------------------------- 1 | # Rock,Paper, Scissors game 2 | Implementation for the popular rock, paper, scissors game. It's basically a challenge from frontendmentor.io website. 3 | 4 | - Check the challenge page [here](https://www.frontendmentor.io/challenges/rock-paper-scissors-game-pTgwgvgH) 5 | - Check the live website [here](https://scissors-paper-rock-game.netlify.app/) 6 | -------------------------------------------------------------------------------- /images/bg-triangle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon-close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon-paper.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon-rock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon-scissors.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/image-rules.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 |Rules
19 |27 | 28 | Rock 29 | 30 | 31 | Paper 32 | 33 | 34 | Scissors 35 | 36 |
37 |score
39 |0
40 |