From 83672017ccaf1485b69b3b20bca68b2bf6b73014 Mon Sep 17 00:00:00 2001 From: Andrew Faraday Date: Mon, 15 Aug 2016 19:53:45 +0100 Subject: [PATCH] Added footer, licence. Public facing stuff. --- LICENCE | 15 +++++++++++++++ README.md | 2 +- index.html | 12 ++++++++++++ style/grid_game.css | 21 +++++++++++++++++++++ 4 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 LICENCE diff --git a/LICENCE b/LICENCE new file mode 100644 index 0000000..9e968ab --- /dev/null +++ b/LICENCE @@ -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. diff --git a/README.md b/README.md index e3a4809..17b7b3f 100644 --- a/README.md +++ b/README.md @@ -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? diff --git a/index.html b/index.html index 7f72afb..d3d7ebc 100644 --- a/index.html +++ b/index.html @@ -27,5 +27,17 @@

My Grid Game

+ diff --git a/style/grid_game.css b/style/grid_game.css index f5e05a1..17289cd 100644 --- a/style/grid_game.css +++ b/style/grid_game.css @@ -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; +}