mirror of https://github.com/CGAL/cgal
61 lines
1.4 KiB
HTML
61 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CGAL CSS Test Page</title>
|
|
<link rel="stylesheet" href="cgal_stylesheet.css">
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="back-nav">Back Navigation</div>
|
|
|
|
<div id="titlearea">Title Area</div>
|
|
|
|
<div class="PkgImage">
|
|
<div class="image">
|
|
<img alt="" src="../../Documentation/fig/pkg-small.png">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="package_section">
|
|
<h1 class=""><a class="anchor" id="PartPolyhedra"></a>
|
|
Cell Complexes and Polyhedra</h1>
|
|
</div>
|
|
|
|
<div class="CGALAdvanced">CGAL Advanced</div>
|
|
<div class="CGALDebug">CGAL Debug</div>
|
|
<dl class="deprecated">Deprecated</dl>
|
|
<div class="CGALModification">CGAL Modification</div>
|
|
<div class="Modification">Modification</div>
|
|
|
|
<button class="collapsible">Collapsible</button>
|
|
<div class="content">
|
|
Content inside collapsible.
|
|
</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.maxHeight){
|
|
content.style.maxHeight = null;
|
|
} else {
|
|
content.style.maxHeight = content.scrollHeight + "px";
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|