-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (64 loc) · 1.84 KB
/
index.html
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
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>fol</title>
<script src="bundle.js"></script>
<style>
.roundBorder {
border: solid 1px;
border-radius: 5px;
margin: 5px;
padding: 10px;
display: inline-block;
font: bold normal 15px / 19.5px Arial;
vertical-align: top;
}
td {
padding-left: 10px;
padding-right: 10px;
white-space: nowrap;
}
#proofFixed {
width: 66%;
height: 90vh;
overflow: hidden;
}
#proofScroll {
height: 100%;
overflow: auto;
}
#proof {
width: 90%;
height: 350px;
}
.redCell {
background-color: red;
}
.greenCell {
background-color: limegreen;
}
</style>
</head>
<body>
<a href="https://github.com/Antony74/fol">
<img style="position: absolute; top: 0; right: 0; border: 0;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub">
</a>
<div id='axioms' class="roundBorder">
</div>
<div class="roundBorder" id="proofFixed">
<div id='proofScroll'>
Proof:
<form>
<textarea id='proof'>
</textarea>
<br>
<button id="validate">Validate</button>
</form>
<div id="validation">
</div>
</div>
</div>
</body>
</html>