Tic Tac Toe with Backbone
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
diff --git a/build/css/app.css b/build/css/app.css new file mode 100644 index 0000000..1ddcd24 --- /dev/null +++ b/build/css/app.css @@ -0,0 +1,28 @@ +#game, #game-list { + max-width: 600px; +} + +h1 { + text-align: center; +} + +#board-display { + width: 50%; + list-style: none; +} + +.board-square { + height: 100px; + width: 100px; + background-color: pink; + padding: 5px; + border: 1px solid white; + line-height: 100px; + text-align: center; + font-size: 4em; + color: white; +} + +.end-of-game { + display: none; +} diff --git a/build/index.html b/build/index.html index 00eb541..87f6a9c 100644 --- a/build/index.html +++ b/build/index.html @@ -3,8 +3,53 @@