Initial commit
This commit is contained in:
commit
4425615de4
5 changed files with 921 additions and 0 deletions
43
data/HTMLtemplate.html
Normal file
43
data/HTMLtemplate.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<HTML>
|
||||
<script>
|
||||
function toggle (elem) {
|
||||
if (elem.className === "vis") {
|
||||
elem.className = "hid"
|
||||
} else {
|
||||
elem.className = "vis";
|
||||
}
|
||||
x = elem.nextSibling;
|
||||
if(x.style.display === "block") {
|
||||
x.style.display = "none";
|
||||
} else {
|
||||
x.style.display = "block";
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
div {
|
||||
display: block;
|
||||
padding: 1vw;
|
||||
}
|
||||
.vis {
|
||||
font-style: normal;
|
||||
background: lightgray;
|
||||
}
|
||||
.hid {
|
||||
font-style: italic;
|
||||
background: none;
|
||||
}
|
||||
.hid + div {
|
||||
display: None;
|
||||
}
|
||||
.ht {
|
||||
}
|
||||
button {
|
||||
width: 100%;
|
||||
}
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
{}
|
||||
</HTML>
|
Loading…
Add table
Add a link
Reference in a new issue