-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (57 loc) · 1.54 KB
/
index.html
File metadata and controls
63 lines (57 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.horizontal-gcd-formula, .horizontal-gcd-formula-example {
font-family: Georgia,"Times New Roman",Times,serif;
font-size: 36px;
text-align: center;
}
.horizontal-gcd-formula td {
min-width: 40px;
}
.horizontal-gcd-formula-example {
opacity: 1;
}
</style>
</head>
<body>
<input type="checkbox" class="view-switch">vertical-view
<div class="input-wrapper">
<input type="number" class="x-input"></input>
<input type="number" class="y-input"></input>
</div>
<div class="euclid-table-wrapper"></div>
<table class="horizontal-gcd-formula">
<tr>
<td>x</td>
<td>⋅</td>
<td>a<sub>i</sub></td>
<td>+</td>
<td>y</td>
<td>⋅</td>
<td>b<sub>i</sub></td>
<td>=</td>
<td>gcd(x,y)</td>
</tr>
<tr class="horizontal-gcd-formula-example">
<td class="x">x</td>
<td>⋅</td>
<td class="a">a<sub>i</sub></td>
<td>+</td>
<td class="y">y</td>
<td>⋅</td>
<td class="b">b<sub>i</sub></td>
<td>=</td>
<td class="gcd">gcd(x,y)</td>
</tr>
</table>
<!-- build:compressed-js -->
<script src="/scripts/EuclidCalc.js" async></script>
<script src="/scripts/View.js" async></script>
<!-- endbuild -->
</body>
</html>