All checks were successful
Deploy Static Site / deploy (push) Successful in 6m55s
99 lines
3.7 KiB
HTML
99 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<title> </title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<link rel="icon" href="favicon.png" type="image/png">
|
|
|
|
<!-- This line includes the general project style sheet (not required) -->
|
|
<link type="text/css" href="default.css" rel="stylesheet" />
|
|
|
|
<style type="text/css">
|
|
body { background:#FFF; }
|
|
.navbar { font-size: 120% }
|
|
|
|
#idx { margin: 0; padding: 0 } /* div tag that wraps the keyword index */
|
|
#idx a { color: #000; text-decoration: none } /* all links in index appear as text */
|
|
|
|
#idx p { margin: 2px } /* keywords and secondary keywords */
|
|
#idx p.idxkeyword2 { margin-left: 20px } /* indentation for secondary keywords */
|
|
|
|
table.idxtable { background: #F4F4F4;
|
|
border: 1px solid #000000;
|
|
border-collapse: collapse;
|
|
-moz-box-shadow: 2px 2px 2px #B0B0B0;
|
|
-webkit-box-shadow: 2px 2px 2px #B0B0B0;
|
|
box-shadow: 2px 2px 2px #B0B0B0;
|
|
filter: progid:DXImageTransform.Microsoft.Shadow(color=B0B0B0, Direction=135, Strength=4); }
|
|
td.idxtable { background: #F4F4F4 }
|
|
|
|
/* font definitions for keyword section, keywords and popup links */
|
|
.idxsection { font-family: Arial,Helvetica; font-weight: normal; font-size: 14pt; color: #000000; text-decoration: none;
|
|
margin-top: 15px; margin-bottom: 15px; }
|
|
.idxkeyword { font-family: Arial,Helvetica; font-weight: normal; font-size: 10pt; color: #000000; text-decoration: none; }
|
|
.idxkeyword2 { font-family: Arial,Helvetica; font-weight: normal; font-size: 10pt; color: #000000; text-decoration: none; }
|
|
.idxlink { font-family: Arial,Helvetica; font-weight: normal; font-size: 8pt; color: #000000; text-decoration: none; }
|
|
|
|
</style>
|
|
<script type="text/javascript" src="jquery.js"></script>
|
|
<script type="text/javascript" src="helpman_settings.js"></script>
|
|
<script type="text/javascript" src="hmcontextids.js"></script>
|
|
</head>
|
|
<body>
|
|
<p class="navbar"><a href="index.html">Contents</a>
|
|
| <b>Index</b>
|
|
| <a href="hmftsearch.html">Search</a>
|
|
</p>
|
|
<hr/>
|
|
<!-- Place holder for the keyword index - this variable is REQUIRED! -->
|
|
<script type="text/javascript">
|
|
|
|
function hmInitHideLinks(cssCode) {
|
|
var styleElement = document.createElement("style");
|
|
styleElement.type = "text/css";
|
|
if (styleElement.styleSheet) {
|
|
styleElement.styleSheet.cssText = cssCode;
|
|
}
|
|
else {
|
|
styleElement.appendChild(document.createTextNode(cssCode));
|
|
}
|
|
document.getElementsByTagName("head")[0].appendChild(styleElement);
|
|
}
|
|
|
|
hmInitHideLinks("#idx div { display: none }");
|
|
|
|
var currentdiv = null;
|
|
var canhidelinks = true;
|
|
|
|
function hmshowLinks(divID) {
|
|
var thisdiv = document.getElementById(divID);
|
|
canhidelinks = true;
|
|
hmhideLinks();
|
|
if (thisdiv) {
|
|
currentdiv = thisdiv;
|
|
$(currentdiv).show();
|
|
$(currentdiv).mouseover(hmdivMouseOver).mouseout(hmdivMouseOut);
|
|
$(document).mouseup(hmhideLinks);
|
|
}
|
|
}
|
|
function hmdivMouseOver() { canhidelinks = false; };
|
|
function hmdivMouseOut() { canhidelinks = true; };
|
|
function hmhideLinks() {
|
|
if (canhidelinks) {
|
|
if (currentdiv) {
|
|
$(currentdiv).hide();
|
|
$(currentdiv).unbind("onmouseover", "onmouseout");
|
|
}
|
|
currentdiv = null;
|
|
$(document).unbind("onmouseup");
|
|
}
|
|
}
|
|
</script>
|
|
<div id="idx" style="margin:0;padding:0;border:none">
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|