Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update options.html #1

Merged
merged 1 commit into from
Mar 14, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 28 additions & 20 deletions options/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,35 @@
<head><title>Jetzt Options</title></head>

<body>
<h1>jetzt options</h1>
<h1>Jetzt Options</h1>

<h2>View</h2>
<h3>Selection Color:</h3>
<select id="color">
<option value="red">red</option>
<option value="green">green</option>
<option value="blue">blue</option>
<option value="yellow">yellow</option>
</select>

<h3>Font:</h3>
<input type="text" placeholder="Font Name" id="font-custom">
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is the most attractive way of handling this, but I could type the name of any font I liked, as long as I had it installed on my computer. I'd much rather read in my default reading font than in some web-equivalent. (Even though Georgia is totally bangin'.)

<select id="font">
<option value="Arial">Arial</option>
<option value="Courier New">Courier New</option>
<option value="Georgia">Georgia</option>
<option value="Times New Roman">Times New Roman</option>
<option value="Verdana">Verdana</option>
</select>

<h2>Behavior</h2>
<h3>Default WPM</h3>
<input type="number" placeholder="400" id="wpm">

<h2>View</h2>
<p>Selection Color:
<select id="color">
<option value="red">red</option>
<option value="green">green</option>
<option value="blue">blue</option>
<option value="yellow">yellow</option>
</select>
</p>
<hr/>
<h2>Reader</h2>
<p>Target WPM:
<input type="number" id="wpm" placeholder="400">
</p>

<br>
<div id="status"></div>
<button id="save">Save</button>
<button id="cancel">Cancel</button>
<br>
<div id="status"></div>
<button id="save">Save</button>
<button id="cancel">Cancel</button>
</body>

<script src="../modules/helpers.js"></script>
Expand Down