Skip to content

Commit

Permalink
Added footer, licence. Public facing stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Faraday committed Aug 15, 2016
1 parent 6fb5c94 commit 8367201
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
15 changes: 15 additions & 0 deletions LICENCE
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Copyright (c) 2016 Andrew Faraday

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions
of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ That's right, there's no particular concept to it yet.
## How to play

* Download the git repository from https://github.com/ajfaraday/grid_game
* Open index.html in a browser
* Open index.html in a browser

## What is the game?

Expand Down
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,17 @@
<body>
<h1>My Grid Game</h1>
<div id="grid_game"></div>
<div class="footer">
<p>
<a href="https://www.github.com/AJFaraday/grid_game" target="_blank">Grid Game</a>
is a board-like game concept by
<a href="https://www.twitter.com/MarmiteJunction" target="_blank">Andrew Faraday</a>.
</p>
<p>It's a pretty juvenile project, so bear with me. It's still being built and updated.</p>
<p>
Feel free to let me know about any issues you find using the
<a href="https://github.com/AJFaraday/grid_game/issues" target="_blank">issue tracker</a>.
</p>
</div>
</body>
</html>
21 changes: 21 additions & 0 deletions style/grid_game.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,24 @@ table.game_board tr.row td.tile_yellow {
color: orangered;
}


.footer {
float:left;
width: 100%;
font-size: 20px;
color: darkgrey;
}

.footer p a{
font-weight: bold;
text-decoration: none;
color: darkgrey;
}

.footer p a:visited{
font-weight: bold;
}

.footer p a:hover{
font-weight: bolder;
}

0 comments on commit 8367201

Please sign in to comment.