-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.html
More file actions
42 lines (39 loc) · 1.7 KB
/
configuration.html
File metadata and controls
42 lines (39 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
<link rel="stylesheet" type="text/css" href="configuration.css">
<script src="configuration.js" type="text/javascript"></script>
</head>
<body>
<h1>Second Sun</h1>
<form name="modePicker">
<h4>Pick a filter mode:</h4>
<div class="container" title="Turn down brightness for all colors">
<input type="radio" id="darken" name="mode" value="darken">
<span class="checkmark">
<span class="hollow"></span>
</span>
<label for="darken">Darken</label>
</div>
<div class="container" title="Invert brightest with the darkest colors">
<input type="radio" id="invert" name="mode" value="invert">
<span class="checkmark">
<span class="hollow"></span>
</span>
<label for="invert">Invert</label>
</div>
<div class="container" title="Dampen brightest colors">
<input type="radio" id="dampen" name="mode" value="dampen">
<span class="checkmark">
<span class="hollow"></span>
</span>
<label for="dampen">Dampen</label>
</div>
</form>
<div class="divider"></div>
<div id="footer">
<a href="https://github.com/AndreasWJ/secondsun" target="_blank"><h4>GitHub</h4></a>
<a href="https://github.com/AndreasWJ/secondsun/blob/master/README.md" target="_blank"><h4>About</h4></a>
<a href="https://github.com/AndreasWJ" target="_blank"><h4>Developed By</h4></a>
</div>
</body>
</html>