Skip to content

Commit 27a6e0e

Browse files
committed
Improvements to main page
* Add a better link to the github page * Add a link to the color palette page
1 parent 10e564f commit 27a6e0e

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

index.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,19 @@
4747
</fieldset>
4848
</div>
4949
<div>
50-
<label for="colorscheme">Farbschema</label>
50+
<label for="colorscheme">Farbschema (<a href="colors.php">Farbtafel</a>)</label>
5151
<select name="colorscheme" onChange="updateColors()">
5252
<option value="HOT">HOT</option>
5353
<option value="WARM">WARM</option>
5454
<option value="COOL">COOL</option>
5555
<option value="BW">BW</option>
56+
<option value="VIBRANT">VIBRANT</option>
5657
<option value="INV">INV</option>
5758
</select>
5859
</div>
5960
<div>
6061
<label><input type="checkbox" name="fontType" value="ocr"> OCR-A Font</label><br />
61-
<label><input type="checkbox" name="colorizeChars" value="1" checked="checked"> Colorize Characters</label>
62+
<label><input type="checkbox" name="colorizeChars" value="1" checked="checked" onChange="updateColors()"> Colorize Characters</label>
6263
</div>
6364
</div>
6465
@@ -84,7 +85,7 @@
8485
</div>
8586
8687
<footer>
87-
A quick <a href="https://github.com/ixs/lto-barcodes/">ixs</a> hack.
88+
<a href="https://github.com/ixs/lto-barcodes/">A quick hack, &copy; 2007-2025 Andreas Thienemann</a>.
8889
</footer>
8990
9091
</body>

lto.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,20 @@ body {
1414
color: var(--primary);
1515
}
1616

17+
a {
18+
color: var(--accent);
19+
text-decoration: none;
20+
}
21+
22+
a:visited {
23+
color: #1c5a88;
24+
}
25+
26+
a:hover, a:focus {
27+
color: var(--primary);
28+
text-decoration: underline;
29+
}
30+
1731
h1 {
1832
text-align: center;
1933
margin-bottom: 1em;

0 commit comments

Comments
 (0)