-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 4.35 KB
/
index.html
File metadata and controls
71 lines (71 loc) · 4.35 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infinite primes</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="card-container"></div>
<div id="settings-icon"><i class="fa fa-cog fa-3x" aria-hidden="true"></i></div>
<div id="settings-content" class="hide">
<p>Infinite and scrollable primes by <a href="https://www.linkedin.com/in/naslundx/">Marcus Näslund</a></p>
<div class="settings-checkboxes">
<table>
<tbody>
<tr>
<td>Primes</td>
<td><input type="radio" name="primes" id="show-primes" checked="true"><label for="show-primes">Show</label></td>
<td><input type="radio" name="primes" id="mark-primes"><label for="mark-primes">Mark</label></td>
<td><input type="radio" name="primes" id="hide-primes"><label for="hide-primes">Hide</label></td>
</tr>
<tr>
<td>Composites</td>
<td><input type="radio" name="composites" id="show-composites"><label for="show-composites">Show</label></td>
<td><input type="radio" name="composites" id="mark-composites"><label for="mark-composites">Mark</label></td>
<td><input type="radio" name="composites" id="hide-composites"><label for="hide-composites">Hide</label></td>
</tr>
<tr>
<td>Fibonacci</td>
<td><input type="radio" name="fibonacci" id="show-fibonacci"><label for="show-fibonacci">Show</label></td>
<td><input type="radio" name="fibonacci" id="mark-fibonacci"><label for="mark-fibonacci">Mark</label></td>
<td><input type="radio" name="fibonacci" id="hide-fibonacci"><label for="hide-fibonacci">Hide</label></td>
</tr>
<tr>
<td>Sexy primes</td>
<td><input type="radio" name="sexy" id="show-sexy"><label for="show-sexy">Show</label></td>
<td><input type="radio" name="sexy" id="mark-sexy"><label for="mark-sexy">Mark</label></td>
<td><input type="radio" name="sexy" id="hide-sexy"><label for="hide-sexy">Hide</label></td>
</tr>
<tr>
<td>Even numbers</td>
<td><input type="radio" name="even" id="show-even"><label for="show-even">Show</label></td>
<td><input type="radio" name="even" id="mark-even"><label for="mark-even">Mark</label></td>
<td><input type="radio" name="even" id="hide-even"><label for="hide-even">Hide</label></td>
</tr>
<tr>
<td>Odd numbers</td>
<td><input type="radio" name="odd" id="show-odd"><label for="show-odd">Show</label></td>
<td><input type="radio" name="odd" id="mark-odd"><label for="mark-odd">Mark</label></td>
<td><input type="radio" name="odd" id="hide-odd"><label for="hide-odd">Hide</label></td>
</tr>
<tr>
<td>Squares</td>
<td><input type="radio" name="squares" id="show-squares"><label for="show-squares">Show</label></td>
<td><input type="radio" name="squares" id="mark-squares"><label for="mark-squares">Mark</label></td>
<td><input type="radio" name="squares" id="hide-squares"><label for="hide-squares">Hide</label></td>
</tr>
</tbody>
</table>
<!-- <div><input type="checkbox" id="show-factorisation"><label for="show-factorisation">Show factorisation</label></div> -->
</div>
<div class="settings-buttons">
<button id="settings-cancel"><i class="fa fa-close"></i> Cancel</button>
<button id="settings-save"><i class="fa fa-save"></i> Save</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>