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
|
body
{
background-color: white;
color: black;
margin-left: 100px;
margin-right: 100px;
font-family: arial, sans-serif;
}
p.banner
{
font-size: x-large;
font-weight: bold;
font-stretch: expanded;
border-bottom-color: black;
border-bottom-style: solid;
border-bottom-width: 1px;
padding-bottom: 5px;
}
div.navigation { }
div.navigation-indented
{
margin-left: 40px;
}
div.diagram
{
text-align: center;
}
div.note
{
border-color: black;
border-style: dotted;
border-width: 1px;
margin-top: 20px;
padding-left: 20px;
padding-right: 20px;
}
span.note
{
font-size: large;
font-weight: bold;
}
code
{
/* font-weight: bold; */
background-color: white;
color: #8B0000;
font-size: large;
}
pre.example
{
background-color: #F0F0F0;
color: black;
border-width: 1px;
border-style: dashed;
border-color: blue;
padding: 10px 10px 10px 10px;
}
table.foot-links
{
width: 100%;
padding-top: 20px;
}
td.foot-link-left
{
text-align: left;
}
td.foot-link-right
{
text-align: right;
}
p.copyright
{
border-top-color: black;
border-top-style: solid;
border-top-width: 1px;
padding-top: 5px;
}
|