Skip to content

Commit

Permalink
css updates
Browse files Browse the repository at this point in the history
  • Loading branch information
roboMoose committed May 14, 2019
1 parent f4eba67 commit 6593d02
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
File renamed without changes.
10 changes: 7 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@
<meta charset="utf-8">
<title>Game of Mole - Fullstack Academy</title>
<link rel="stylesheet" href="main.css">
<script src="GameOfLife.js" defer></script>
<script src="GameOfMole.js" defer></script>
<script src="main.js" defer></script>
</head>

<body>
<div id="container">
<h1>Game of Mole</h1>
<h2 id="score">0</h2>
<div class = 'scoreBox'>
<h2>Score:</h2>
<h2 id="score">0</h2>
</div>

<table id='board'></table>

<div id='control_panel'>
Expand All @@ -23,7 +27,7 @@ <h2 id="score">0</h2>
</div>

<footer>
<p>Reenvisioned by Thom and Hugo at <a href="http://www.fullstackacademy.com/">Fullstack Academy</a></p>
<p>Reenvisioned by Hugo and Thom at <a href="http://www.fullstackacademy.com/">Fullstack Academy</a></p>
</footer>
</div>

Expand Down
6 changes: 6 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ h2 {
margin-top: 0;
}

.scoreBox{
display: flex;
width: 110px;
justify-content: space-around;
}


#container {
display: flex;
Expand Down

0 comments on commit 6593d02

Please sign in to comment.