diff --git a/index.css b/index.css index ae8b9a0..ec76ddc 100644 --- a/index.css +++ b/index.css @@ -1,3 +1,70 @@ html { - + font-family: 'Poiret One', cursive; +} + +h1 { + text-align: center; + font-size: 80px; + margin: 0; +} + +#tictactoe { + width: 60%; + margin-left: auto; + margin-right: auto; +} + +.box { + width: 32%; + height: 100%; + display:inline-block; + background-color: blue; +} + +#row1, #row2, #row3 { + margin-top: 5px; + width: 100%; + height: 200px; +} + +.c1 { + margin-left: 10px; +} + +#player-1-score, #player-2-score { + display: inline-block; + text-align: center; +} + +#player-1-score { + margin-right: 40px; +} + +#player-2-score { + margin-left: 40px; +} + +#player-scores { + width: 600px; + margin: auto; + text-align: center; + font-size: 30px; +} + +#reset-button { + font-family: 'Poiret One', cursive; + font-size: 30px; + width: 200px; + height:50px; + text-align: center; + margin:0 auto; + padding: 10px; + border-radius: 10px; + -moz-border-radius: 10px; + -webkit-border-radius: 10px; +} + +#button-holder { + text-align: center; + margin-bottom: 30px; } diff --git a/index.html b/index.html index de8d985..a826eef 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,7 @@