lfs.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. /*
  2. $LastChangedBy$
  3. $Date$
  4. */
  5. /* Global settings */
  6. body {
  7. font-family: verdana, tahoma, helvetica, arial, sans-serif;
  8. text-align: left;
  9. background: #fff;
  10. color: #222;
  11. margin: 1em;
  12. padding: 0;
  13. font-size: 1em;
  14. line-height: 1.2em
  15. }
  16. /* Links */
  17. a:link { color: #22b; }
  18. a.ulink:link { font-weight: bold; color: #55f; }
  19. a:visited { color: #7e4988 ! important; }
  20. a:hover, a:focus { color: #d30e08 ! important; }
  21. a:active { color: #6b77b1 ! important;}
  22. /* Book titlepage */
  23. .book .titlepage {
  24. background: #f5f6f7;
  25. margin: 0px auto;
  26. padding: 0 1em;
  27. }
  28. .book hr {
  29. background: #dbddec;
  30. height: .3em;
  31. border: 0px;
  32. margin: 0 -1em;
  33. padding: 0;
  34. }
  35. div.dedication {
  36. padding-left: 1em;
  37. }
  38. /* Sections */
  39. div.sect1, div.appendix {
  40. padding-left: .3em;
  41. }
  42. div.important ul {
  43. padding-left: 1.5em;
  44. list-style-type: disc;
  45. }
  46. div.important ul li p {
  47. margin: 0px;
  48. padding: 0px 0.6em;
  49. }
  50. .package, .kernel, .installation, .commands, .testing, .configuration, .content {
  51. padding: 0 .5em .2em 0;
  52. margin: 0;
  53. }
  54. .lfs .package {
  55. background: #f5f6f7;
  56. border-bottom: 0.2em solid #dbddec;
  57. padding-top: .1em;
  58. margin-top: 0;
  59. }
  60. .lfs .configuration {
  61. background: #fefefe;
  62. border-top: 0.2em solid #dbddec;
  63. }
  64. .lfs .content {
  65. background: #f5f6f7;
  66. border-top: 0.2em solid #dbddec;
  67. padding-bottom: .1em;
  68. margin-bottom: 0;
  69. }
  70. /* Headers */
  71. h1, h2, h3, h4, h5, h6, b, .strong {
  72. color: #000;
  73. font-weight: bold;
  74. line-height: 1em;
  75. }
  76. h1 {
  77. font-size: 173%;
  78. text-align: center;
  79. }
  80. .book h1 {
  81. margin: 0;
  82. padding: 0.4em;
  83. }
  84. .preface h1, .part h1, .chapter h1, .appendix h1, .index h1, .sect1 h1 {
  85. background: #f5f6f7;
  86. border-bottom: .1em solid #dbddec;
  87. margin-bottom: 1em;
  88. margin-top: 0;
  89. padding: .4em;
  90. }
  91. .sect1 h1, .appendix h1 {
  92. margin-left: -.2em;
  93. }
  94. .wrap h1 {
  95. background: #f5f6f7;
  96. margin: 0;
  97. padding: .4em;
  98. }
  99. h1.title sup {
  100. font-size: small;
  101. }
  102. h2 {
  103. font-size: 144%;
  104. }
  105. .book h2.subtitle {
  106. text-align: center;
  107. background: #dbddec;
  108. margin: 0;
  109. padding: 0.2em;
  110. }
  111. .appendix h2 {
  112. font-size: 133%;
  113. margin-top: .8em;
  114. margin-bottom: 0.2em;
  115. }
  116. h3 {
  117. font-size: 120%;
  118. }
  119. h4 {
  120. font-size: 110%;
  121. }
  122. .package h4, h5, h6 {
  123. font-size: 100%;
  124. font-style: italic;
  125. }
  126. /* Navigation */
  127. div.navheader, div.navfooter {
  128. background: #ecedef;
  129. margin: 0;
  130. padding: 0.1em .5em;
  131. }
  132. div.navheader {
  133. border-bottom: 1px solid #dbddec;
  134. }
  135. div.navfooter {
  136. border-top: 1px solid #dbddec;
  137. }
  138. div.navheader h4 {
  139. margin-top: .4em;
  140. margin-bottom: 0;
  141. text-align: center;
  142. }
  143. div.navheader h3 {
  144. margin-top: .2em;
  145. margin-bottom: 0;
  146. text-align: center;
  147. }
  148. div.navheader ul, div.navfooter ul {
  149. padding: .2em .5em .5em 0;
  150. margin: .5em 0;
  151. position: relative;
  152. background: #dbddec;
  153. }
  154. div.navheader ul li, div.navfooter ul li {
  155. display: inline;
  156. width: 40%;
  157. }
  158. div.navheader ul li.prev, div.navfooter ul li.prev {
  159. position: absolute;
  160. display: block;
  161. left: 0;
  162. text-align: left;
  163. padding: 0.2em 1em;
  164. margin-left: 6px;
  165. }
  166. div.navheader ul li.next, div.navfooter ul li.next {
  167. position: absolute;
  168. display: block;
  169. text-align: right;
  170. right: 5px;
  171. padding: 0.2em 0.5em;
  172. margin-right: 7px;
  173. }
  174. div.navheader ul li.prev p, div.navfooter ul li.prev p,
  175. div.navheader ul li.next p, div.navfooter ul li.next p {
  176. padding: 0;
  177. margin: 1px 0px;
  178. }
  179. div.navheader ul li.home, div.navheader ul li.up,
  180. div.navfooter ul li.home, div.navfooter ul li.up {
  181. text-align: center;
  182. padding: 0;
  183. margin: 0px auto;
  184. display: block;
  185. color: #dbddec;
  186. }
  187. /* TOC */
  188. div.toc ul, div.index ul, div.navheader ul, div.navfooter ul {
  189. list-style: none;
  190. }
  191. div.toc {
  192. padding-left: 1em;
  193. }
  194. li.preface, .part li.appendix {
  195. margin-left: 1em;
  196. }
  197. div.toc h3 {
  198. margin: 1em 0 .3em 0;
  199. }
  200. li.appendix h3, li.glossary h3, li.index h3 {
  201. margin: .5em
  202. }
  203. div.toc h4 {
  204. margin: .6em 0 .2em 0;
  205. }
  206. li.chapter h4 a {
  207. display: block;
  208. margin-bottom: .4em
  209. }
  210. .dummy {
  211. display: block;
  212. font-weight: bold;
  213. font-size: 110%;
  214. margin: .6em 0 .2em 0;
  215. }
  216. /* Index */
  217. .item {
  218. float: left;
  219. margin-right: 1em
  220. }
  221. .secitem {
  222. font-weight: normal;
  223. float: left;
  224. margin-right: 1em
  225. }
  226. .indexref {
  227. display: block;
  228. }
  229. .item + .indexref {
  230. margin-left: 20em;
  231. }
  232. .secitem + .indexref {
  233. margin-left: 19em;
  234. }
  235. /* Admonitions */
  236. div.admon img {
  237. padding: .3em;
  238. }
  239. div.admon h3 {
  240. display: inline;
  241. margin-left: 2em;
  242. }
  243. div.admon p {
  244. margin-left: .5em;
  245. padding-bottom: .4em;
  246. }
  247. div.admon pre {
  248. margin: 0.5em 3em;
  249. }
  250. div.note, div.tip {
  251. background-color: #fffff6;
  252. border: 2px solid #dbddec;
  253. width: 90%;
  254. margin: .5em auto;
  255. }
  256. div.important, div.warning, div.caution {
  257. background-color: #fffff6;
  258. border: medium solid #400;
  259. width: 90%;
  260. margin: .5em auto;
  261. color: #600;
  262. }
  263. div.important h3, div.warning h3, div.caution h3 {
  264. color: #900;
  265. }
  266. div.important em, div.warning em, div.caution em {
  267. color: #000;
  268. font-weight: bold;
  269. }
  270. /* table */
  271. .table p.title {
  272. text-align: center;
  273. margin-top: 0;
  274. margin-bottom: .3em;
  275. }
  276. .table table {
  277. margin-left: auto;
  278. margin-right: auto;
  279. }
  280. .table table th, .table table td {
  281. padding: 0.2em 2em 0.2em 2em;
  282. text-align: left;
  283. }
  284. .revhistory {
  285. padding-left: 1em;
  286. }
  287. .revhistory th {
  288. line-height: 2em;
  289. text-align: left;
  290. }
  291. .revhistory td {
  292. padding-right: 1em;
  293. }
  294. /* variablelist as table */
  295. .variablelist table {
  296. width: auto;
  297. margin: 0 1em 0 1em;
  298. }
  299. .variablelist td {
  300. vertical-align: top;
  301. }
  302. .variablelist td span, td p {
  303. margin: 0.25em;
  304. }
  305. /* variablelist as list */
  306. dl {
  307. padding-left: 1em
  308. }
  309. dt {
  310. font-weight: bold;
  311. margin-left: 1em;
  312. }
  313. dd {
  314. margin-bottom: .6em;
  315. margin-left: 1em;
  316. }
  317. dd p {
  318. margin-top: 0;
  319. margin-bottom: 0;
  320. padding-top: 0;
  321. padding-bottom: 0;
  322. }
  323. div.materials dt {
  324. display: list-item;
  325. }
  326. div.materials dd {
  327. margin-left: 0;
  328. padding-left: 0;
  329. }
  330. /* segmentedlist */
  331. .appendix .segmentedlist {
  332. padding-left: 1em;
  333. }
  334. .package .seg {
  335. margin-bottom: 0em;
  336. margin-top: 0em;
  337. clear: left;
  338. }
  339. .content .seg {
  340. margin-bottom: .4em;
  341. margin-top: .4em;
  342. clear: left;
  343. }
  344. .segtitle {
  345. float: left;
  346. }
  347. .package .segbody, .appendix .segbody {
  348. display: block;
  349. padding-left: 14em;
  350. }
  351. .content .segbody {
  352. display: block;
  353. padding-left: 12em;
  354. }
  355. /* itemizedlist */
  356. ul {
  357. padding-left: 1em
  358. }
  359. .itemizedlist ul {
  360. margin-left: 1em
  361. }
  362. .itemizedlist li ul {
  363. margin-bottom: 1.2em;
  364. }
  365. .itemizedlist li ul li p {
  366. margin-top: .5em;
  367. margin-bottom: .5em;
  368. }
  369. .itemizedlist li ul li:first-child p:first-child {
  370. margin-top: -.6em;
  371. }
  372. ul.compact {
  373. list-style: none;
  374. }
  375. .blfs ul.compact {
  376. list-style: disc;
  377. }
  378. ul.compact li {
  379. margin: 0em;
  380. padding: 0em;
  381. }
  382. ul.compact li p {
  383. padding: 0.3em;
  384. margin: 0em;
  385. }
  386. .blfs ul.compact li p {
  387. background-color: #f0fff0;
  388. }
  389. /* orderedlist */
  390. ol {
  391. list-style: decimal;
  392. }
  393. ol ol {
  394. list-style: lower-alpha;
  395. }
  396. ol ol ol {
  397. list-style: lower-roman;
  398. }
  399. ol.compact li {
  400. margin: 0em;
  401. padding: 0em;
  402. }
  403. ol.compact li p {
  404. padding: 0.3em;
  405. margin: 0em;
  406. }
  407. /* Indented blocks */
  408. p, blockquote {
  409. padding-left: 1em;
  410. padding-right: 1em;
  411. }
  412. /* Monospaced elements */
  413. tt, code, kbd, pre, .command {
  414. font-family: monospace;
  415. }
  416. .systemitem {
  417. font-style: italic;
  418. }
  419. pre {
  420. background-color: #e5e5e5;
  421. border: 1px solid #050505;
  422. padding: .5em 1em;
  423. margin: 0 2em .5em 2em;
  424. font-weight: bold;
  425. }
  426. pre.userinput {
  427. color: #101310;
  428. }
  429. pre.root {
  430. color: #101310;
  431. border: 1px solid #11a;
  432. }
  433. pre.screen {
  434. color: #000;
  435. background-color: #e9e9e9;
  436. font-weight: normal;
  437. }
  438. .literal, .prompt {
  439. font-weight: normal;
  440. }
  441. /* Mixed tags */
  442. p.usernotes {
  443. margin-left: -1em;
  444. font-size: small;
  445. font-weight: bold;
  446. font-style: italic;
  447. }
  448. .underlined {
  449. text-decoration: underline;
  450. }
  451. /* Last edited info */
  452. p.updated {
  453. font-size: small;
  454. font-weight: bold;
  455. font-style: italic;
  456. }
  457. /* Special colored blocks */
  458. /* OrangeRed4 */
  459. .feature-ssp {
  460. color: #8B2500;
  461. }
  462. /* RoyalBlue3 */
  463. .feature-aslr {
  464. color: #3A5FCD;
  465. }
  466. /* NavyBlue */
  467. .feature-pax {
  468. color: #000080;
  469. }
  470. /* VioletRed */
  471. .feature-hardened_tmp {
  472. color: #d02090;
  473. }
  474. /* PaleTurquoise4 */
  475. .feature-warnings {
  476. color: #668b8b;
  477. }
  478. /* RosyBrown */
  479. .feature-misc {
  480. color: #bc8f8f;
  481. }
  482. /* Sienna*/
  483. .feature-blowfish {
  484. color: #8E6B23
  485. }