Skip to content

Commit

Permalink
Adding default powfile with instructions and about screen
Browse files Browse the repository at this point in the history
  • Loading branch information
jkriss committed Nov 10, 2019
1 parent 22cecdc commit aef3bcc
Show file tree
Hide file tree
Showing 7 changed files with 377 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ node_modules
*.swp
dist
public/sw.js
public/_/about-pow.png

51 changes: 51 additions & 0 deletions about/index.html
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>
Binary file added about/pow-splat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit aef3bcc

Please sign in to comment.