2009-03-17 20:21:10 +01:00
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Title
|
|
|
|
*/
|
|
|
|
h2.title, h3.title, h4.title, h5.title, h6.title{
|
|
|
|
color: #000;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2.title {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3.title {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4.title {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5.title, h6.title {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5.title {
|
|
|
|
margin-left: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Menu
|
|
|
|
*/
|
|
|
|
div.toc a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Code
|
|
|
|
*/
|
|
|
|
pre.programlisting {
|
|
|
|
border-style: solid;
|
|
|
|
border-color: #60B7D4;
|
|
|
|
-moz-border-radius: 6px;
|
2010-01-26 12:39:15 +01:00
|
|
|
border-radius: 6px;
|
2009-03-17 20:21:10 +01:00
|
|
|
border-width: 1px 1px 1px 6px;
|
|
|
|
opacity: 0.7;
|
|
|
|
background-color: #D4E8EE;
|
|
|
|
padding: 0.5em;
|
|
|
|
width: 90%;
|
|
|
|
margin: auto;
|
2017-06-15 18:47:28 +02:00
|
|
|
margin-top: 2em;
|
2009-03-17 20:21:10 +01:00
|
|
|
color: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
em.citetitle {
|
|
|
|
-moz-border-radius: 6px;
|
2010-01-26 12:39:15 +01:00
|
|
|
border-radius: 6px;
|
2009-03-17 20:21:10 +01:00
|
|
|
background-color: #60B7D4;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 1em;
|
|
|
|
font-style: normal;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 0.2em;
|
|
|
|
margin-top: -1em;
|
|
|
|
display: block;
|
|
|
|
width: 50%;
|
|
|
|
-moz-border-radius: 6px;
|
2010-01-26 12:39:15 +01:00
|
|
|
border-radius: 6px;
|
2009-03-17 20:21:10 +01:00
|
|
|
}
|
|
|
|
|
2017-06-15 18:47:28 +02:00
|
|
|
pre.programlisting:has(> em.citetitle) {
|
|
|
|
margin-top: 2em;
|
|
|
|
}
|
|
|
|
|
2009-03-17 20:21:10 +01:00
|
|
|
/*
|
|
|
|
* Warning / Important / Note
|
|
|
|
*/
|
|
|
|
div.warning, div.important, div.note {
|
|
|
|
margin: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
-moz-border-radius: 20px;
|
2010-01-26 12:39:15 +01:00
|
|
|
border-radius: 20px;
|
2009-03-17 20:21:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.warning table, div.important table, div.note table {
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.warning table th, div.important table th, div.note table th {
|
|
|
|
background-color: transparent;
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.warning a, div.important a, div.note a {
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Warning
|
|
|
|
*/
|
|
|
|
div.warning {
|
|
|
|
background-color: #FF3B3B;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Important
|
|
|
|
*/
|
|
|
|
div.important {
|
|
|
|
background-color: #366CEB;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note
|
|
|
|
*/
|
|
|
|
div.note {
|
|
|
|
background-color: #4D4D4D;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tableau
|
|
|
|
*/
|
|
|
|
table {
|
|
|
|
border: 1px solid #000;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding: 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
background-color: #D4E8EE;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.navheader th {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.term {
|
|
|
|
font-family: courier;
|
|
|
|
font-size: 1.1em;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
2010-04-12 12:38:03 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Function synopsis
|
|
|
|
*/
|
|
|
|
div.funcsynopsis table {
|
|
|
|
border: none;
|
|
|
|
}
|