1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
body
{
padding: 1em;
}
h2.title
{
margin-top: 1.5em;
margin-left: 0em;
margin-right: 0em;
margin-bottom: 1em;
border-bottom: thin solid #444444;
font-size: 1.4em;
}
h3.title
{
display: inline-block;
margin-top: .6em;
margin-left: 0em;
margin-right: 0em;
margin-bottom: .2em;
border-bottom: thin dotted #444444;
font-size: 1.2em;
}
table
{
display: table;
margin-top: 1em;
margin-left: auto;
margin-right: auto;
margin-bottom: 1em;
border: thin solid #888888;
border-collapse: collapse;
}
table td
{
display: table-cell;
border: thin solid #888888;
padding-top: .2em;
padding-left: .3em;
padding-right: .3em;
padding-bottom: .2em;
}
.chapter .toc
{
margin-top: 1em;
margin-left: 2em;
margin-right: 2em;
margin-bottom: 1em;
padding-left: 1em;
border-left: thin solid #888888;
}
.chapter .toc dt
{
margin: 0em .1em .1em 0em;
font-size : .9em;
}
.screenshot
{
margin-top: 1em;
margin-left: auto;
margin-right: auto;
margin-bottom: 1em;
width: 90%;
}
.screenshot img
{
width: 100%;
}
.screenshot img:active
{
width: auto;
}
.example
{
margin-top: 1em;
margin-left: 2em;
margin-right: 2em;
margin-bottom: 1em;
padding: 1em;
border: thin solid #888888;
}
.example .title
{
margin-top: 0em;
padding-bottom: .2em;
border-bottom: thin solid #888888;
}
.programlisting
{
font-family: monospace;
margin-bottom: 0em;
overflow: auto;
}
.warning
{
margin-top: 1em;
margin-left: 2em;
margin-right: 2em;
margin-bottom: 1em;
padding: .7em 1em 0em 1em;
border: thin solid #880000;
background: #FFCCCC;
}
.warning .title
{
display: block;
margin-top: 0em;
padding-bottom: .2em;
border-bottom: thin solid #880000;
color: #660000;
}
.variablelist .term
{
border-bottom: thin solid #888888;
}
.variablelist .variablelist .term
{
border-bottom: thin dotted #888888;
}
.variablelist .variablelist .variablelist .term
{
border-bottom: thin dotted #888888;
font-style: italic;
}
|