44 lines
862 B
HTML
44 lines
862 B
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<style>
|
|
body { background-color: #212837; color: #FFFFFF; }
|
|
a { color: #40bfb8; }
|
|
a::before {
|
|
content: "---";
|
|
font-family: monospace, monospace;
|
|
display: inline-block;
|
|
margin-right: 6px;
|
|
color: #40bfb8;
|
|
}
|
|
</style>
|
|
|
|
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
|
|
<title> RCBasic Library Reference </title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
[NAVBAR_CONTENT]
|
|
|
|
|
|
<script>
|
|
var toggler = document.getElementsByClassName("box");
|
|
var i;
|
|
|
|
for (i = 0; i < toggler.length; i++) {
|
|
toggler[i].addEventListener("click", function() {
|
|
this.parentElement.querySelector(".nested").classList.toggle("active");
|
|
this.classList.toggle("check-box");
|
|
});
|
|
}
|
|
</script>
|
|
|
|
|
|
</body>
|
|
</html>
|