-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from katestarks/add-readme
Add readme
- Loading branch information
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Illuminate | ||
|
||
## Playing | ||
|
||
[Play the game on itch.io](https://darth-mediocrity.itch.io/illuminate) | ||
|
||
## Making code changes | ||
|
||
The file `index.html` accesses the javascript and css files from this GitHub repository (master branch), so changing those files here does not require uploading to itch.io. | ||
|
||
If a change is made that requires uploading to itch.io (such as modifying `index.html`), create a zip file containing all the relevant files and folders and upload it. | ||
|
||
When testing changes locally, you will need to modify `index.html` to use the local files, otherwise any changes you make to javascript or css will have no effect. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
html, body { | ||
margin: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters