lfs.css 7.8 KB

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