Skip to content

Commit

Permalink
add how to play links
Browse files Browse the repository at this point in the history
  • Loading branch information
one23four56 committed Apr 10, 2023
1 parent e6591da commit a136c06
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# checkers

Simple checkers
Simple checkers game. [How to play](./how-to-play.md).

A minified HTML file is available under the releases tab, or you could minify it yourself (currently only works on windows, sorry):

1. Clone this repo
2. run `npm install` (requires [node.js](https://nodejs.org/en))
3. run `npm run pack`
1 change: 1 addition & 0 deletions src/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<body class="menu">
<h1>Checkers</h1>
<a href="https://github.com/one23four56/checkers/blob/master/how-to-play.md" target="_blank">How to Play</a>
<div class="teams">
<div class="team blue">
<h2>Blue Team<span class="team2"></span></h2>
Expand Down
5 changes: 5 additions & 0 deletions src/scss/menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,9 @@ button {
border: none;
padding: 0.5em;
cursor: pointer;
}

a {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0.5em;
}

0 comments on commit a136c06

Please sign in to comment.