-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding default powfile with instructions and about screen
- Loading branch information
Showing
7 changed files
with
377 additions
and
3 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ node_modules | |
*.swp | ||
dist | ||
public/sw.js | ||
public/_/about-pow.png | ||
|
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,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" dir="ltr"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>About Pow Player</title> | ||
<style> | ||
body { | ||
background: #efefef; | ||
font-family: monospace; | ||
} | ||
#instructions, #about { | ||
color: #444; | ||
font-size: 0.9rem; | ||
max-width: 80%; | ||
margin: 1rem auto; | ||
text-align: center; | ||
} | ||
#instructions { | ||
margin-top: 1.5rem; | ||
} | ||
#about { | ||
width: 250px; | ||
transition: opacity 0.75s; | ||
opacity: 0.2; | ||
} | ||
#about:hover { | ||
opacity: 1; | ||
} | ||
#about h1 { | ||
color: #222; | ||
} | ||
#about img { | ||
max-width: 100%; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="instructions"> | ||
Click the "Choose File" button in the toolbar above and select a compatible image. | ||
</div> | ||
<div id="about"> | ||
<img src="pow-splat.png"> | ||
<h1>Pow Player</h1> | ||
<p> | ||
Pow Player and powfile format created by Jesse Kriss. | ||
Icon design by Erin Murphy. | ||
</p> | ||
</div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.