diff --git a/README.md b/README.md index 9d64813..dcd7716 100644 --- a/README.md +++ b/README.md @@ -2,35 +2,35 @@ #### Minimum Deliverable Product a working game of go for a 9x9 board that -* displays well on mobile or desktop -* initiates a game with suggested handicap and komi according to rank input -* * displays how to play in open screen -* lets the user know whose turn it is -* lets the user know which moves are legal and calculates those accordingly -* * logs ko -* * implement a search algorithm to avoid moving into dead space -* correctly removes captured stones and adds them to capturing player's score -* logs game record -* allows players to pass or resign -* * ends game upon 2 consecutive passes -* calculates estimated score at game end -* * compares board groups to most common dead shapes -* * allows users to override dead group estimates and submit finalized score to game record -* displays game record as string +- [x] displays well on mobile or desktop +- [x] initiates a game with suggested handicap and komi according to rank input +- [x] displays how to play in open screen +- [x] lets the user know whose turn it is +- [x] lets the user know which moves are legal and calculates those accordingly +- [x] logs ko +- [x] implement a search algorithm to avoid moving into dead space +- [x] correctly removes captured stones and adds them to capturing player's score +- [x] logs game record +- [x] allows players to pass or resign +- [x] ends game upon 2 consecutive passes +- [ ] calculates estimated score at game end +- [ ] compares board groups to most common dead shapes +- [ ] allows users to override dead group estimates and submit finalized score to game record +- [ ] displays game record as string stretch goals -* uses stone placement GUI for resign and pass -* maintains a one move game state history for 'undo mismove' -* converts string to .sgf format -* allows users to edit game info mid game -* add stone placement sounds +- [x] uses stone placement GUI for resign and pass +- [ ] maintains a one move game state history for 'undo mismove' +- [ ] converts string to .sgf format +- [x] allows users to edit game info mid game +- [ ] add stone placement sounds superstretch goals -* allows users to select board size (9x9, 13x13, 19x19) -* allows users to load .sgf main lines -* allow for responsivity in the form of -* * 9x9 games simply stretch with screen size -* * larger games allow small displays one click to zoom before running legal move calculations and move placement +- [x] allows users to select board size (9x9, 13x13, 19x19) +- [ ] allows users to load .sgf main lines +- [ ] allow for responsivity in the form of +- - [ ] 9x9 games simply stretch with screen size +- - [ ] larger games allow small displays one click to zoom before running legal move calculations and move placement diff --git a/css/main.css b/css/main.css index 9fcd4db..2906b1c 100644 --- a/css/main.css +++ b/css/main.css @@ -57,7 +57,11 @@ body { .menu-heading, content, #instructions, div[data-player-meta] label { font-family: 'Raleway', sans-serif; - font-weight: 300; +} + +h1 { + font-size: 140%; + font-weight: 600; } h4 { diff --git a/index.html b/index.html index 82a5c77..ba10700 100644 --- a/index.html +++ b/index.html @@ -17,11 +17,18 @@