Skip to content

Commit

Permalink
Update volleyballstats.html
Browse files Browse the repository at this point in the history
  • Loading branch information
jac18042 authored Feb 1, 2020
1 parent fdfbb41 commit 7a9f49e
Showing 1 changed file with 7 additions and 21 deletions.
28 changes: 7 additions & 21 deletions volleyballstats.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,14 @@ <h3 class ="text" style="font-size:180%;padding-left:25%;text-align:center;margi
and then the name of a stat category to register info. If a mistake is made, the user can switch between plus and minus mode.
The user can switch between different sets from the menu, including the total which combines the stats of all played sets.
<br /></p>
<!-- <h3 class ="text" style="font-size:180%;padding-left:25%;text-align:center;">Code</h3> -->
<button type="button" class="collapsible">Code</button>
<div class="content">
<p>Lorem ipsum...</p>
</div>
<h3 class ="text" style="font-size:180%;padding-left:25%;text-align:center;">Code</h3>
<p class="text" style="font-size:150%;text-align:justify;padding-left:25%;">
<a href="Runner.java.html">Runner.java</a><br />
<a href="Menu.java.html">Menu.java</a><br />
<a href="Menu.form.html">Menu.form</a><br />
<a href="Interface.java.html">Interface.java</a><br />
<a href="Interface.form.html">Interface.form</a><br /></p>
</div>
</div>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;

for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
</body>
</html>

0 comments on commit 7a9f49e

Please sign in to comment.