diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..cc081ab Binary files /dev/null and b/.DS_Store differ diff --git a/contributing.md b/contributing.md index e944350..d706e88 100644 --- a/contributing.md +++ b/contributing.md @@ -5,7 +5,7 @@ __Steps to Follow__ 1. Fork it! 2. Create your feature branch: `git checkout -b my-new-feature` -3. Commit your changes: `git commit -am 'Add some feature'` +3. Commit your changes` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request diff --git a/css/styles.css b/css/styles.css index ea88fc4..6d2ab56 100644 --- a/css/styles.css +++ b/css/styles.css @@ -1,10 +1,11 @@ body{ - background: #333; + padding-top: 2%; + background: #999; font-family: verdana; overflow:hidden; } -.wrapper{ +.wrapper{padding-top: 7%; width: 100%; max-width: 1200px; margin: auto; @@ -50,7 +51,7 @@ body{ } .panels div.front:hover{ - outline: 3px solid #00b8ff; + outline: 4px solid #00b8ff; } .match div.front{ @@ -64,21 +65,21 @@ body{ } .mismatch div.front{ - outline: 3px dashed red; + outline: 4px dashed red; } .mismatch div.back{ - outline: 3px dashed red; + outline: 4px dashed red; animation: twirl 0.2s 0.2s ease-out forwards reverse; } .activated div.front{ - outline: 3px solid white; + outline: 4px solid white; animation: twirl 0.2s ease-in forwards; } .activated div.back{ - outline: 3px solid white; + outline: 4px solid white; animation: twirl 0.2s 0.2s ease-out forwards reverse; } diff --git a/js/index.js b/js/index.js index 5d21d13..d8a8c83 100644 --- a/js/index.js +++ b/js/index.js @@ -71,7 +71,7 @@ unblock = function(){ checkWin = function(){ if(tiles == 40){ - alert("You won in " + (new Date().getTime() - time) / 1000 + " seconds! click OK to restart"); + alert("You WON in " + (new Date().getTime() - time) / 1000 + " seconds! click OK to Restart"); location.reload(); } }