A book about the command line for humans.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
2.0 KiB

9 years ago
  1. body {
  2. font-size: 42px;
  3. font-family: "Georgia", "DejaVu Serif", "Bitstream Vera Serif", "Lucida Bright", serif;
  4. background: white;
  5. color: #000000;
  6. font-family: sans-serif;
  7. margin-left: auto;
  8. margin-right: auto;
  9. margin-top: 0em;
  10. max-width: 48em;
  11. padding-left: 1em;
  12. padding-right: 1em;
  13. }
  14. .contents ul li {
  15. list-style: none;
  16. }
  17. .contents ul li li {
  18. }
  19. ul li {
  20. list-style: square;
  21. }
  22. .buttons {
  23. position: absolute;
  24. bottom: 20px;
  25. right: 20px;
  26. }
  27. button.clicker-button {
  28. background-color: white;
  29. border: 1.5px solid #ddc;
  30. border-radius: 3px;
  31. }
  32. button.clicker-button:active {
  33. background-color: #ddc;
  34. border-left: 1px solid black;
  35. border-top: 1px solid black;
  36. }
  37. .details .full {
  38. background-color: white;
  39. border-bottom: 2px solid #ddc;
  40. border-left: 2px solid #ddc;
  41. border-radius: 3px;
  42. border-right: 2px solid #ddc;
  43. border-top: 2px solid #ddc;
  44. padding: 1.5em;
  45. }
  46. hr {
  47. margin-bottom: 2em;
  48. margin-top: 2em;
  49. }
  50. p, ul li, ol li, ul {
  51. }
  52. td {
  53. vertical-align: top;
  54. }
  55. h1, h2, h3, h4, h5, h6 {
  56. font-weight: normal;
  57. margin-left: auto;
  58. margin-right: auto;
  59. }
  60. .center {
  61. text-align: center;
  62. }
  63. h1 { font-size: 3em; }
  64. h2 { font-size: 2.5em; }
  65. a {
  66. font-style: none;
  67. text-decoration: none;
  68. }
  69. pre {
  70. background-color: white;
  71. /* border: 1px solid #ddc; */
  72. border-radius: 3px;
  73. color: black;
  74. margin-bottom: 2em;
  75. margin-left: 2em;
  76. margin-top: 2em;
  77. max-width: 56em;
  78. padding: 1em;
  79. white-space: pre-wrap;
  80. }
  81. pre.noborder {
  82. border: none;
  83. margin-left: 0;
  84. margin-right: 0;
  85. margin-top: 0;
  86. margin-bottom: 0;
  87. }
  88. p code {
  89. border: 1px solid #ddc;
  90. border-radius: 3px;
  91. font-size: normal;
  92. padding: 2px;
  93. }
  94. img {
  95. margin-top: 2em;
  96. margin-bottom: 2em;
  97. }
  98. .sidenote {
  99. font-size: small;
  100. /* margin-right: -170px; */
  101. max-width: 200px;
  102. position: absolute;
  103. right: 20px;
  104. top: auto; /* default */
  105. }
  106. blockquote.callout {
  107. float: right;
  108. font-size: 1.1em;
  109. margin-left: 2em;
  110. margin-right: 0;
  111. margin-top: 0;
  112. width: 30%;
  113. }
  114. blockquote.callout p {
  115. margin-top: 0;
  116. }