Skip to content

Commit

Permalink
attempt 3
Browse files Browse the repository at this point in the history
  • Loading branch information
iLikeGrape committed Nov 15, 2024
1 parent 33d2833 commit 6a9c3d1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ <h1>Tic Tac Toe</h1>
<h2 id="statusText"></h2>
<button id="restartBtn">Restart</button>
</div>
<ul>
<li><a href=spaceinvaders.html>Space Invaders</a></li>
<li><a href=index.html>Tic Tac Toe</a></li>
<div id="list">
<ul>
<li><a href=spaceinvaders.html>Space Invaders</a></li>
<li><a href=index.html>Tic Tac Toe</a></li>
</div>
<script src="index.js"></script>
</div>
</body>
Expand Down
7 changes: 5 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@
#gameContainer{
font-family: "Permanent Marker";
text-align: center;
float: right;
}
#cellContainer{
display: grid;
grid-template-columns: repeat(3, auto);
width: 225px;
}
.container{
#container{
display:flex;
background-color: red;
}
#list{
float: left;
}

0 comments on commit 6a9c3d1

Please sign in to comment.