fixed class conflict causing issue with comments in code blocks; fixed include caused by moving a file; changed top level of site to make it pretty; marked old index as orphan.

This commit is contained in:
Kevin Putnam
2019-04-03 12:49:01 -07:00
parent 101020bd84
commit 5db336d01a
5 changed files with 11 additions and 9 deletions
@@ -92,27 +92,27 @@ th,td {
padding-left: 0 !important;
}
.c1 {
.clps1 {
font-size: 175%;
}
.c2 {
.clps2 {
font-size: 150%;
}
.c3 {
.clps3 {
font-size: 125%;
}
.c4 {
.clps4 {
font-size: 115%;
}
.c5 {
.clps5 {
font-size: 110%;
}
.c6 {
.clps6 {
font-size: 100%;
}
@@ -21,7 +21,7 @@ for (i = 0; i < contents.length; i++) {
var btn = document.createElement("BUTTON");
//If it is a header capture which level and pass on to button
if (element_type.length == 2 && element_type[0] == 'h') {
var newClass = 'c' + element_type[1];
var newClass = 'clps' + element_type[1];
//collapses the section by default only if javascript is working
contents[i].style.maxHeight = 0;
//Build the button and define behavior