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
|
/*
* Stylesheet taken from the DarwinPorts Guide.
* Contributed to the DarwinPorts project by Will Barton and Michael Maibaum.
*/
* {
font-family: "Georgia", "Trebuchet MS";
}
body {
background: #c8dcff;
width: 720px;
margin: 15px auto 15px auto;
font-size: 12px;
line-height: 1.2;
}
a:link {
color: #669;
text-decoration: none;
font-weight: bold;
border-bottom: 1px dotted #c63;
}
a:visited {
color: #888;
text-decoration: none;
font-weight: bold;
border-bottom: 1px dotted #669;
}
a:hover {
color: #c63;
text-decoration: none;
font-weight: bold;
border-bottom: 1px dotted #369;
}
hr {
display: none;
}
h3.title {
color: #879880;
margin: 1em 0 1em 0;
padding: 0;
border-bottom: 1px solid #ddd;
}
h4.title {
color: #999;
margin: 0 auto;
padding: 0;
}
h5.title {
color: #999;
margin: 0 auto;
padding: 0;
}
h1.title, h2.title {
color: #669;
margin: 5px 0 5px 0;
padding: 10px 0 0 0;
border-bottom: 1px solid #bbb;
}
.navheader,
.navfooter,
div.book,
div.part,
div.chapter,
div.preface,
div.sect1 {
background: #fff;
padding: 0.5em 2em;
margin: 0.5em;
border: 1px solid #bbb;
}
div.chapter div.sect1, div.preface div.sect1 {
border: 0;
padding: 0;
margin: 0;
}
div.sect2, div.sect3 {
margin: 0 1em;
}
pre.programlisting {
color: #2F4F4F;
background-color: #E6E6E6;
font-family: "Courier New", Courier;
font-weight: Bold;
}
.userinput {
color: #669;
}
tt {
font-family: "Courier New", Courier;
}
.filename, .computeroutput {
color: #673;
}
.classname, .methodname, .varname, .term {
color: #699;
}
.uri {
font-family: "Courier New", Courier;
font-weight: bold;
}
.database {
color: #2F4F4F;
}
|