-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
402 additions
and
265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "chrome", | ||
"request": "launch", | ||
"name": "Launch Chrome against localhost", | ||
"url": "http://localhost:3000", | ||
"webRoot": "${workspaceFolder}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,80 @@ | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", | ||
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", | ||
sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
code { | ||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", | ||
monospace; | ||
} | ||
font: 14px "Century Gothic", Futura, sans-serif; | ||
margin: 20px; | ||
} | ||
|
||
.active { | ||
font-weight: 600; | ||
} | ||
|
||
.inactive { | ||
font-weight: normal; | ||
} | ||
|
||
ol, ul { | ||
padding-left: 30px; | ||
} | ||
|
||
.board-row:after { | ||
clear: both; | ||
content: ""; | ||
display: table; | ||
} | ||
|
||
.status { | ||
margin-bottom: 10px; | ||
} | ||
|
||
.square { | ||
background: #fff; | ||
border: 1px solid #999; | ||
float: left; | ||
font-size: 24px; | ||
font-weight: bold; | ||
line-height: 34px; | ||
height: 34px; | ||
margin-right: -1px; | ||
margin-top: -1px; | ||
padding: 0; | ||
text-align: center; | ||
width: 34px; | ||
} | ||
|
||
.square:focus { | ||
outline: none; | ||
} | ||
|
||
.kbd-navigation .square:focus { | ||
background: #ddd; | ||
} | ||
|
||
.winningSquares { | ||
color: #000; | ||
background: rgb(142, 252, 99); | ||
} | ||
|
||
.draw { | ||
text-align: center; | ||
width: 102px; | ||
height: 102px; | ||
background-color: #ddd; | ||
padding: 20px; | ||
} | ||
|
||
.win { | ||
text-align: center; | ||
} | ||
|
||
.reset { | ||
padding: 5px; | ||
} | ||
|
||
.game { | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
.game-info { | ||
margin-left: 20px; | ||
} | ||
|
Oops, something went wrong.