mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-09-01 02:44:55 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user