├── .gitignore ├── apps ├── casio-keyboard │ ├── casio.css │ ├── casio.html │ └── readme.md ├── clocks │ └── readme.md └── magic-trick │ ├── magic-trick.css │ └── magic-trick.html ├── games ├── connect-four │ ├── connect-four.css │ ├── connect-four.html │ ├── connect-four.jpg │ └── readme.md ├── dino │ ├── dino.css │ ├── dino.html │ ├── dino.jpg │ └── readme.md ├── driving │ ├── driving │ │ ├── driving.css │ │ ├── driving.html │ │ ├── driving.jpg │ │ └── readme.md │ └── no-html │ │ ├── driving-no-html.css │ │ ├── driving-no-html.html │ │ ├── driving-no-html.jpg │ │ └── readme.md ├── mastermind │ ├── mastermind.css │ ├── mastermind.html │ ├── mastermind.jpg │ └── readme.md ├── plankman │ ├── plankman.css │ ├── plankman.html │ ├── plankman.jpg │ └── readme.md ├── rock-paper-scissors │ ├── readme.md │ ├── rock-paper-scissors.css │ ├── rock-paper-scissors.html │ └── rock-paper-scissors.jpg ├── simon │ ├── readme.md │ ├── simon.css │ ├── simon.html │ └── simon.jpg ├── snakes-and-ladders │ ├── Multi-player │ │ ├── readme.md │ │ ├── snakes-and-ladders-multiplayer.css │ │ ├── snakes-and-ladders-multiplayer.html │ │ └── snakes-and-ladders-multiplayer.jpg │ └── Single-player │ │ ├── readme.md │ │ ├── snakes-and-ladders.css │ │ ├── snakes-and-ladders.html │ │ └── snakes-and-ladders.jpg ├── tic-tac-toe │ ├── player-vs-computer-ai │ │ ├── readme.md │ │ ├── tic-tac-toe-ai.css │ │ ├── tic-tac-toe-ai.html │ │ └── tic-tac-toe-ai.jpg │ └── player-vs-player │ │ ├── readme.md │ │ ├── tic-tac-toe.css │ │ ├── tic-tac-toe.html │ │ └── tic-tac-toe.jpg ├── trivia │ ├── modern │ │ ├── readme.md │ │ ├── trivia.css │ │ ├── trivia.html │ │ └── trivia.jpg │ └── wwtbam │ │ ├── readme.md │ │ ├── trivia.css │ │ ├── trivia.html │ │ └── trivia.jpg └── whack-a-mole │ ├── readme.md │ ├── whack-a-mole.css │ ├── whack-a-mole.html │ └── whack-a-mole.jpg ├── license └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /apps/casio-keyboard/casio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/apps/casio-keyboard/casio.css -------------------------------------------------------------------------------- /apps/casio-keyboard/casio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/apps/casio-keyboard/casio.html -------------------------------------------------------------------------------- /apps/casio-keyboard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/apps/casio-keyboard/readme.md -------------------------------------------------------------------------------- /apps/clocks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/apps/clocks/readme.md -------------------------------------------------------------------------------- /apps/magic-trick/magic-trick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/apps/magic-trick/magic-trick.css -------------------------------------------------------------------------------- /apps/magic-trick/magic-trick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/apps/magic-trick/magic-trick.html -------------------------------------------------------------------------------- /games/connect-four/connect-four.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/connect-four/connect-four.css -------------------------------------------------------------------------------- /games/connect-four/connect-four.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/connect-four/connect-four.html -------------------------------------------------------------------------------- /games/connect-four/connect-four.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/connect-four/connect-four.jpg -------------------------------------------------------------------------------- /games/connect-four/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/connect-four/readme.md -------------------------------------------------------------------------------- /games/dino/dino.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/dino/dino.css -------------------------------------------------------------------------------- /games/dino/dino.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/dino/dino.html -------------------------------------------------------------------------------- /games/dino/dino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/dino/dino.jpg -------------------------------------------------------------------------------- /games/dino/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/dino/readme.md -------------------------------------------------------------------------------- /games/driving/driving/driving.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/driving/driving/driving.css -------------------------------------------------------------------------------- /games/driving/driving/driving.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/driving/driving/driving.html -------------------------------------------------------------------------------- /games/driving/driving/driving.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/driving/driving/driving.jpg -------------------------------------------------------------------------------- /games/driving/driving/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/driving/driving/readme.md -------------------------------------------------------------------------------- /games/driving/no-html/driving-no-html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/driving/no-html/driving-no-html.css -------------------------------------------------------------------------------- /games/driving/no-html/driving-no-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/driving/no-html/driving-no-html.html -------------------------------------------------------------------------------- /games/driving/no-html/driving-no-html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/driving/no-html/driving-no-html.jpg -------------------------------------------------------------------------------- /games/driving/no-html/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/driving/no-html/readme.md -------------------------------------------------------------------------------- /games/mastermind/mastermind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/mastermind/mastermind.css -------------------------------------------------------------------------------- /games/mastermind/mastermind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/mastermind/mastermind.html -------------------------------------------------------------------------------- /games/mastermind/mastermind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/mastermind/mastermind.jpg -------------------------------------------------------------------------------- /games/mastermind/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/mastermind/readme.md -------------------------------------------------------------------------------- /games/plankman/plankman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/plankman/plankman.css -------------------------------------------------------------------------------- /games/plankman/plankman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/plankman/plankman.html -------------------------------------------------------------------------------- /games/plankman/plankman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/plankman/plankman.jpg -------------------------------------------------------------------------------- /games/plankman/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/plankman/readme.md -------------------------------------------------------------------------------- /games/rock-paper-scissors/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/rock-paper-scissors/readme.md -------------------------------------------------------------------------------- /games/rock-paper-scissors/rock-paper-scissors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/rock-paper-scissors/rock-paper-scissors.css -------------------------------------------------------------------------------- /games/rock-paper-scissors/rock-paper-scissors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/rock-paper-scissors/rock-paper-scissors.html -------------------------------------------------------------------------------- /games/rock-paper-scissors/rock-paper-scissors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/rock-paper-scissors/rock-paper-scissors.jpg -------------------------------------------------------------------------------- /games/simon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/simon/readme.md -------------------------------------------------------------------------------- /games/simon/simon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/simon/simon.css -------------------------------------------------------------------------------- /games/simon/simon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/simon/simon.html -------------------------------------------------------------------------------- /games/simon/simon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/simon/simon.jpg -------------------------------------------------------------------------------- /games/snakes-and-ladders/Multi-player/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/snakes-and-ladders/Multi-player/readme.md -------------------------------------------------------------------------------- /games/snakes-and-ladders/Multi-player/snakes-and-ladders-multiplayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/snakes-and-ladders/Multi-player/snakes-and-ladders-multiplayer.css -------------------------------------------------------------------------------- /games/snakes-and-ladders/Multi-player/snakes-and-ladders-multiplayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/snakes-and-ladders/Multi-player/snakes-and-ladders-multiplayer.html -------------------------------------------------------------------------------- /games/snakes-and-ladders/Multi-player/snakes-and-ladders-multiplayer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/snakes-and-ladders/Multi-player/snakes-and-ladders-multiplayer.jpg -------------------------------------------------------------------------------- /games/snakes-and-ladders/Single-player/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/snakes-and-ladders/Single-player/readme.md -------------------------------------------------------------------------------- /games/snakes-and-ladders/Single-player/snakes-and-ladders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/snakes-and-ladders/Single-player/snakes-and-ladders.css -------------------------------------------------------------------------------- /games/snakes-and-ladders/Single-player/snakes-and-ladders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/snakes-and-ladders/Single-player/snakes-and-ladders.html -------------------------------------------------------------------------------- /games/snakes-and-ladders/Single-player/snakes-and-ladders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/snakes-and-ladders/Single-player/snakes-and-ladders.jpg -------------------------------------------------------------------------------- /games/tic-tac-toe/player-vs-computer-ai/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/tic-tac-toe/player-vs-computer-ai/readme.md -------------------------------------------------------------------------------- /games/tic-tac-toe/player-vs-computer-ai/tic-tac-toe-ai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/tic-tac-toe/player-vs-computer-ai/tic-tac-toe-ai.css -------------------------------------------------------------------------------- /games/tic-tac-toe/player-vs-computer-ai/tic-tac-toe-ai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/tic-tac-toe/player-vs-computer-ai/tic-tac-toe-ai.html -------------------------------------------------------------------------------- /games/tic-tac-toe/player-vs-computer-ai/tic-tac-toe-ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/tic-tac-toe/player-vs-computer-ai/tic-tac-toe-ai.jpg -------------------------------------------------------------------------------- /games/tic-tac-toe/player-vs-player/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/tic-tac-toe/player-vs-player/readme.md -------------------------------------------------------------------------------- /games/tic-tac-toe/player-vs-player/tic-tac-toe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/tic-tac-toe/player-vs-player/tic-tac-toe.css -------------------------------------------------------------------------------- /games/tic-tac-toe/player-vs-player/tic-tac-toe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/tic-tac-toe/player-vs-player/tic-tac-toe.html -------------------------------------------------------------------------------- /games/tic-tac-toe/player-vs-player/tic-tac-toe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/tic-tac-toe/player-vs-player/tic-tac-toe.jpg -------------------------------------------------------------------------------- /games/trivia/modern/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/trivia/modern/readme.md -------------------------------------------------------------------------------- /games/trivia/modern/trivia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/trivia/modern/trivia.css -------------------------------------------------------------------------------- /games/trivia/modern/trivia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/trivia/modern/trivia.html -------------------------------------------------------------------------------- /games/trivia/modern/trivia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/trivia/modern/trivia.jpg -------------------------------------------------------------------------------- /games/trivia/wwtbam/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/trivia/wwtbam/readme.md -------------------------------------------------------------------------------- /games/trivia/wwtbam/trivia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/trivia/wwtbam/trivia.css -------------------------------------------------------------------------------- /games/trivia/wwtbam/trivia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/trivia/wwtbam/trivia.html -------------------------------------------------------------------------------- /games/trivia/wwtbam/trivia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/trivia/wwtbam/trivia.jpg -------------------------------------------------------------------------------- /games/whack-a-mole/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/whack-a-mole/readme.md -------------------------------------------------------------------------------- /games/whack-a-mole/whack-a-mole.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/whack-a-mole/whack-a-mole.css -------------------------------------------------------------------------------- /games/whack-a-mole/whack-a-mole.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/whack-a-mole/whack-a-mole.html -------------------------------------------------------------------------------- /games/whack-a-mole/whack-a-mole.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/games/whack-a-mole/whack-a-mole.jpg -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/license -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvaromontoro/CSS-Games/HEAD/readme.md --------------------------------------------------------------------------------