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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
/* CSS for et.redhat.com/~rjones/
* $Id: standard.css,v 1.15 2009/07/22 10:32:02 rjones Exp $
*/
body {
margin-left: 1em;
}
body p, body ul, ol, body dl {
margin-left: 2em;
width: 35em;
}
li {
padding-bottom: 0.5em;
}
/* Headings. */
h1 {
font-size: 140%;
border-bottom: 1px solid #000;
}
h2 {
border-bottom: 1px solid #eee;
}
h1, h2, h3, h4 {
color: #333;
}
/* Code sections. */
code {
font-size: 120%;
}
pre {
background-color: #fcfcfc;
/*border: 1px dotted #888;*/
border-left: 6px solid #f0f0f0;
padding: 5px;
margin-left: 1em;
font-size: 120%;
}
/* Notes. */
p.note {
margin-left: 2em;
margin-right: 1em;
/*border: 1px dotted #888;*/
padding-left: 36px;
background: url(../images/note.png) no-repeat;
}
p.warning {
margin-left: 2em;
margin-right: 1em;
border: 1px dotted #800;
padding-left: 36px;
background: url(../images/warning.png) no-repeat #fee;
}
/* Highlighted text. */
span.highlight {
color: red;
}
/* Images. */
img.frame_img {
border: 1px solid #888;
padding: 6px;
}
/* Floating images with text around. */
img.leftpara {
float: left;
clear: left;
margin-right: 1em;
margin-bottom: 1em;
}
img.rightpara {
float: right;
clear: right;
margin-left: 1em;
margin-bottom: 1em;
}
/* Nice-looking tables. */
table.top_table {
border-collapse: collapse;
}
table.top_table th {
vertical-align: top;
padding: 3px;
border-bottom: 1px solid #ddd;
}
table.top_table td {
vertical-align: top;
padding: 3px;
}
table.top_table td.number {
text-align: right;
}
table.top_table th.divider {
text-align: center;
padding: 6px;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
table.left_table {
border-collapse: collapse;
}
table.left_table th {
text-align: right;
vertical-align: top;
padding: 3px;
padding-right: 1em;
}
table.left_table td {
vertical-align: top;
padding: 3px;
}
table.left_table td.number {
text-align: right;
}
table.left_table th.divider {
text-align: center;
padding: 6px;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
/* <ul> styled as menus. */
ul.menu {
width: 60em;
padding: 0px;
margin-left: 1em;
list-style: none;
}
ul.menu li {
display: inline;
border-left: 1px solid #666;
padding-left: 5px;
}
ul.menu li.first {
border-left: none;
padding-left: 0px;
}
/* Highlight for Javascript "go" sections. */
.jsgo {
border: 1px solid #fff;
cursor: pointer;
cursor: hand;
}
.jsgo:hover {
border: 1px solid #ccc;
background: #eef;
}
|