2015-10-28 11:10:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
Html and body
|
|
|
|
*******************************************************************************/
|
|
|
|
html
|
|
|
|
{
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
font-family: Avenir, Corbel, sans-serif;
|
|
|
|
font-size: 12pt;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-left: 1%;
|
|
|
|
margin-right: 1%;
|
|
|
|
width: 98%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body
|
|
|
|
{
|
|
|
|
margin: 0px auto;
|
|
|
|
padding: 0px;
|
|
|
|
width: 100%;
|
2015-11-22 23:44:01 +02:00
|
|
|
text-align: justify;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 1000px)
|
|
|
|
{
|
|
|
|
body
|
|
|
|
{
|
|
|
|
width: 1000px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
Link default styling
|
|
|
|
*******************************************************************************/
|
|
|
|
a:link, a:visited, a:hover, a:active
|
|
|
|
{
|
|
|
|
text-decoration: underline;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
Header
|
|
|
|
*******************************************************************************/
|
|
|
|
.page-header
|
|
|
|
{
|
|
|
|
width:100%;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header-title
|
|
|
|
{
|
|
|
|
font-size: xx-large;
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header-subtitle
|
|
|
|
{
|
|
|
|
position: relative;
|
|
|
|
top: -.25em;
|
|
|
|
font-size: large;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2016-05-16 23:01:48 +02:00
|
|
|
.page-header-logo
|
|
|
|
{
|
|
|
|
float: left;
|
|
|
|
margin-top: 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header-logo > img
|
|
|
|
{
|
|
|
|
width: 69px;
|
|
|
|
height: 69px;
|
|
|
|
}
|
|
|
|
|
2015-10-28 11:10:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
Menu
|
|
|
|
*******************************************************************************/
|
2015-11-22 23:44:01 +02:00
|
|
|
/*.page-menu*/
|
2015-10-28 11:10:36 +02:00
|
|
|
|
|
|
|
.menu-body
|
|
|
|
{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu
|
|
|
|
{
|
|
|
|
white-space: nowrap;
|
|
|
|
display: inline;
|
2015-11-22 23:44:01 +02:00
|
|
|
margin-left: .5em;
|
|
|
|
font-size: 13pt;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu:first-of-type
|
|
|
|
{
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu:before
|
|
|
|
{
|
|
|
|
content: "[";
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu:after
|
|
|
|
{
|
|
|
|
content: "]";
|
|
|
|
}
|
|
|
|
|
2015-11-22 23:44:01 +02:00
|
|
|
/*.menu-link*/
|
2015-10-28 11:10:36 +02:00
|
|
|
|
|
|
|
a.menu-link:link, a.menu-link:visited, a.menu-link:active
|
|
|
|
{
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.menu-link:hover
|
|
|
|
{
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
Table of Contents
|
|
|
|
*******************************************************************************/
|
|
|
|
.page-toc-body
|
|
|
|
{
|
|
|
|
margin-top: .25em;
|
2015-10-29 18:45:29 +02:00
|
|
|
margin-bottom: 2em;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.section1-toc:first-of-type
|
|
|
|
{
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section1-toc
|
|
|
|
{
|
|
|
|
margin-top: .5em;
|
|
|
|
}
|
|
|
|
|
2016-11-07 17:06:35 +02:00
|
|
|
.section1-toc-number
|
|
|
|
{
|
|
|
|
display: inline;
|
|
|
|
font-size: 14pt;
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
|
2015-10-28 11:10:36 +02:00
|
|
|
.section1-toc-title
|
|
|
|
{
|
2016-11-07 17:06:35 +02:00
|
|
|
display: inline;
|
2015-10-28 11:10:36 +02:00
|
|
|
font-size: 14pt;
|
|
|
|
}
|
|
|
|
|
2016-11-07 17:06:35 +02:00
|
|
|
.section2-toc
|
|
|
|
{
|
|
|
|
margin-left: 1.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section2-toc-number
|
|
|
|
{
|
|
|
|
display: inline;
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
|
2015-10-28 11:10:36 +02:00
|
|
|
.section2-toc-title
|
|
|
|
{
|
2016-11-07 17:06:35 +02:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section3-toc
|
|
|
|
{
|
|
|
|
margin-left: 2.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section3-toc-number
|
|
|
|
{
|
|
|
|
display: inline;
|
|
|
|
margin-right: .5em;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.section3-toc-title
|
|
|
|
{
|
2016-11-07 17:06:35 +02:00
|
|
|
display: inline;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
Section
|
|
|
|
*******************************************************************************/
|
|
|
|
.section1
|
|
|
|
{
|
2015-11-22 23:44:01 +02:00
|
|
|
margin-top: 2.5em;
|
2015-10-29 18:45:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.section1:first-of-type
|
|
|
|
{
|
2015-10-28 11:10:36 +02:00
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section2, .section3
|
|
|
|
{
|
2015-10-29 18:45:29 +02:00
|
|
|
margin-top: 1em;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
2016-11-07 17:06:35 +02:00
|
|
|
.section1-header, .section2-header, .section3-header, .page-toc-header
|
2015-10-28 11:10:36 +02:00
|
|
|
{
|
|
|
|
margin-top: .5em;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2016-11-07 17:06:35 +02:00
|
|
|
.section1-header, .page-toc-header
|
2015-10-28 11:10:36 +02:00
|
|
|
{
|
2015-11-22 23:44:01 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
background-color: #396a93;
|
|
|
|
color: #f8f8f8;
|
2015-10-29 18:45:29 +02:00
|
|
|
font-size: 22pt;
|
2015-10-28 11:10:36 +02:00
|
|
|
padding-left: .5em;
|
2015-10-29 18:45:29 +02:00
|
|
|
margin-bottom: .5em;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
2016-11-07 17:06:35 +02:00
|
|
|
.section1-number, .section2-number, .section3-number
|
|
|
|
{
|
|
|
|
display: inline;
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section1-title, .section2-title, .section3-title
|
|
|
|
{
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2016-05-26 15:20:55 +02:00
|
|
|
.section1-subtitle, .section2-subtitle, .section3-subtitle
|
|
|
|
{
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 16pt;
|
2016-05-26 16:34:10 +02:00
|
|
|
margin-top: .5em;
|
2016-05-26 15:20:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.section1-subsubtitle, .section2-subsubtitle, .section3-subsubtitle
|
|
|
|
{
|
|
|
|
font-style: italic;
|
|
|
|
font-size: 14pt;
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
2016-05-26 16:34:10 +02:00
|
|
|
.section1-subtitle
|
|
|
|
{
|
|
|
|
font-size: 16pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section1-subsubtitle
|
|
|
|
{
|
|
|
|
font-size: 14pt;
|
|
|
|
}
|
|
|
|
|
2015-10-28 11:10:36 +02:00
|
|
|
.section2
|
|
|
|
{
|
2015-10-29 18:45:29 +02:00
|
|
|
margin-top: 1em;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
2016-11-07 17:06:35 +02:00
|
|
|
.section2-header
|
2015-10-28 11:10:36 +02:00
|
|
|
{
|
2015-11-22 23:44:01 +02:00
|
|
|
border-bottom: 2px #396a93 solid;
|
|
|
|
color: #396a93;
|
2015-10-29 18:45:29 +02:00
|
|
|
font-size: 16pt;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
2016-05-26 16:34:10 +02:00
|
|
|
.section2-subtitle, .section2-subtitle
|
|
|
|
{
|
|
|
|
font-size: 14pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section2-subsubtitle, .section3-subsubtitle
|
|
|
|
{
|
|
|
|
font-size: 12pt;
|
|
|
|
}
|
|
|
|
|
2015-10-28 11:10:36 +02:00
|
|
|
.section3
|
|
|
|
{
|
|
|
|
margin-left: 1em;
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section3:first-of-type
|
|
|
|
{
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
2016-11-07 17:06:35 +02:00
|
|
|
.section3-header
|
2015-10-28 11:10:36 +02:00
|
|
|
{
|
|
|
|
display: inline;
|
2015-10-29 18:45:29 +02:00
|
|
|
font-size: 14pt;
|
2015-11-22 23:44:01 +02:00
|
|
|
color: #396a93;
|
|
|
|
border-bottom: 1px #396a93 solid;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.section-intro
|
|
|
|
{
|
|
|
|
margin-top: .75em;
|
|
|
|
}
|
|
|
|
|
2015-11-22 23:44:01 +02:00
|
|
|
/*.section-body*/
|
2015-10-28 11:10:36 +02:00
|
|
|
|
2018-12-18 21:56:39 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
Table Elements
|
|
|
|
*******************************************************************************/
|
|
|
|
.table
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-header-row
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-header-left
|
|
|
|
{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-header-center
|
|
|
|
{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-header-right
|
|
|
|
{
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-header-fill
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-row
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-data-left
|
|
|
|
{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-data-center
|
|
|
|
{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-data-right
|
|
|
|
{
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2015-10-28 11:10:36 +02:00
|
|
|
/*******************************************************************************
|
2016-05-26 15:20:55 +02:00
|
|
|
Config, Execute, Code Block, Release Elements
|
2015-10-28 11:10:36 +02:00
|
|
|
*******************************************************************************/
|
|
|
|
.section-body-text
|
|
|
|
{
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-body-text:first-of-type
|
|
|
|
{
|
|
|
|
margin-top: .75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.execute,
|
|
|
|
.config,
|
|
|
|
.code-block
|
|
|
|
{
|
|
|
|
/*white-space: nowrap;*/
|
|
|
|
margin-left: 1em;
|
|
|
|
margin-right: 1em;
|
2015-11-22 23:44:01 +02:00
|
|
|
margin-top: .8em;
|
2015-10-28 11:10:36 +02:00
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.execute-title,
|
|
|
|
.config-title
|
|
|
|
{
|
|
|
|
font-size: 11pt;
|
|
|
|
margin-bottom: .125em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.execute-body,
|
|
|
|
.config-body,
|
|
|
|
.code-block
|
|
|
|
{
|
2015-11-22 23:44:01 +02:00
|
|
|
border-radius: 3px;
|
2015-10-28 11:10:36 +02:00
|
|
|
background-color: #444444;
|
|
|
|
font-family: monospace;
|
|
|
|
unicode-bidi: embed;
|
2015-11-22 23:44:01 +02:00
|
|
|
color: #f8f8f8;
|
|
|
|
/*color: white;*/
|
2015-10-28 11:10:36 +02:00
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
|
2015-11-22 23:44:01 +02:00
|
|
|
.execute-body-cmd,
|
2015-10-28 11:10:36 +02:00
|
|
|
.execute-body-output, .execute-body-output-highlight,
|
|
|
|
.config-body-title,
|
|
|
|
.code-block
|
|
|
|
{
|
|
|
|
padding-left: .5em;
|
|
|
|
padding-right: .5em;
|
|
|
|
}
|
|
|
|
|
2015-11-22 23:44:01 +02:00
|
|
|
/* Would rather not use pre at all, but Firefox won't copy code samples correctly without it */
|
|
|
|
pre
|
|
|
|
{
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.execute-body-cmd:before
|
|
|
|
{
|
|
|
|
content: "$ ";
|
|
|
|
}
|
|
|
|
|
|
|
|
.execute-body-cmd:first-of-type, .execute-body-output,
|
2015-10-28 11:10:36 +02:00
|
|
|
.config-body-title, .config-body-output,
|
2015-11-22 23:44:01 +02:00
|
|
|
.code-block,
|
|
|
|
.execute-body-output-highlight, .execute-body-output-highlight-error
|
2015-10-28 11:10:36 +02:00
|
|
|
{
|
|
|
|
padding-top: .25em;
|
|
|
|
}
|
|
|
|
|
2015-11-22 23:44:01 +02:00
|
|
|
.execute-body-cmd, .execute-body-output,
|
2015-10-28 11:10:36 +02:00
|
|
|
.config-body-title, .config-body-output,
|
2015-11-22 23:44:01 +02:00
|
|
|
.code-block,
|
|
|
|
.execute-body-output-highlight, .execute-body-output-highlight-error
|
2015-10-28 11:10:36 +02:00
|
|
|
{
|
|
|
|
padding-bottom: .25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.execute-body-output,
|
|
|
|
.config-body-output,
|
|
|
|
.code-block
|
|
|
|
{
|
2015-11-22 23:44:01 +02:00
|
|
|
border-radius: 3px;
|
2015-10-28 11:10:36 +02:00
|
|
|
background-color: #606060;
|
|
|
|
}
|
|
|
|
|
|
|
|
.execute-body-output-highlight
|
|
|
|
{
|
2015-11-22 23:44:01 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
background-color: #1e7b1e;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.execute-body-output-highlight-error
|
|
|
|
{
|
2015-11-22 23:44:01 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
background-color: #a32929;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.execute-body-output, .execute-body-output-highlight, .execute-body-output-highlight-error,
|
|
|
|
.config-body-output
|
|
|
|
{
|
2015-11-22 23:44:01 +02:00
|
|
|
padding-left: 1.75em;
|
2015-10-28 11:10:36 +02:00
|
|
|
}
|
|
|
|
|
2015-11-22 23:44:01 +02:00
|
|
|
/*.code-block*/
|
2015-10-28 11:10:36 +02:00
|
|
|
|
2015-11-22 23:44:01 +02:00
|
|
|
/*.section-body-execute-output*/
|
2015-10-28 11:10:36 +02:00
|
|
|
|
2016-05-26 15:34:03 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
Lists
|
|
|
|
*******************************************************************************/
|
|
|
|
ul.list-unordered
|
|
|
|
{
|
|
|
|
margin-top: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.list-unordered
|
|
|
|
{
|
|
|
|
margin-top: .5em;
|
|
|
|
}
|
|
|
|
|
2015-10-28 11:10:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
Keywords
|
|
|
|
*******************************************************************************/
|
2017-02-10 17:22:05 +02:00
|
|
|
.backrest, .cmd, .postgres, .host, .proper
|
2015-10-28 11:10:36 +02:00
|
|
|
{
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.path, .br-option, .br-setting, .pg-option, .pg-setting, .id, .user, .file, .path
|
|
|
|
{
|
|
|
|
unicode-bidi: embed;
|
|
|
|
font-family: monospace;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
Footer
|
|
|
|
*******************************************************************************/
|
|
|
|
.page-footer
|
|
|
|
{
|
|
|
|
border-top: 2px #cccccc solid;
|
|
|
|
margin-top: 1em;
|
|
|
|
padding-top: .25em;
|
|
|
|
font-size: x-small;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: center;
|
|
|
|
}
|