style.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. html {
  2. margin-top: 75px;
  3. }
  4. body {
  5. background-color: #222;
  6. font-family: "Linux Libertine", "Liberation Serif", "FreeSerif", "EB Garamond", serif;
  7. color: #ccc;
  8. }
  9. header {
  10. font-size: 108pt;
  11. font-weight: bold;
  12. text-align: center;
  13. line-height: 0.5;
  14. }
  15. header a {
  16. color: white;
  17. text-decoration: none;
  18. }
  19. main, footer, #navigation {
  20. width: 60%;
  21. margin: auto;
  22. }
  23. summary {
  24. color: white;
  25. cursor: pointer;
  26. width: 240px;
  27. height: 50px;
  28. text-align: center;
  29. margin: auto;
  30. }
  31. summary:hover {
  32. color: #ccc;
  33. }
  34. h1 {
  35. font-size: 54pt;
  36. text-align: center;
  37. color: white;
  38. }
  39. h2 {
  40. font-size: 36pt;
  41. color: white;
  42. margin-bottom: -5px;
  43. }
  44. h2 a {
  45. text-decoration: none;
  46. color: white;
  47. }
  48. h2 a:hover {
  49. color: #ccc;
  50. }
  51. h3 {
  52. font-size: 24pt;
  53. color: #ccc;
  54. margin-bottom: 20px;
  55. }
  56. h3 a {
  57. text-decoration: none;
  58. color: white;
  59. }
  60. h3 a:hover {
  61. color: #ccc;
  62. }
  63. p {
  64. font-size: 18pt;
  65. text-align: justify;
  66. hyphens: auto;
  67. line-height: 1.25;
  68. }
  69. a {
  70. color: white;
  71. }
  72. a:hover {
  73. text-decoration: none;
  74. color: #ccc;
  75. }
  76. a:visited {
  77. color: #ccc;
  78. }
  79. table {
  80. width: 100%;
  81. font-size: 16pt;
  82. padding-right: 4%;
  83. margin-left: -2%;
  84. text-align: center;
  85. }
  86. td {
  87. padding-bottom: 3px;
  88. padding-top: 3px;
  89. }
  90. .bigcenter {
  91. text-align: center;
  92. font-size: 36pt;
  93. }
  94. .story {
  95. width: 100%;
  96. margin-bottom: 75px;
  97. }
  98. .story p {
  99. margin-left: 150px;
  100. text-align: left;
  101. line-height: 1.35;
  102. }
  103. .preview {
  104. float: left;
  105. }
  106. .center {
  107. text-align: center;
  108. }
  109. .fullwidth {
  110. width: 100%;
  111. }
  112. .bigbreak {
  113. margin-bottom: 600px;
  114. }
  115. .grey, img {
  116. -webkit-filter: grayscale(1);
  117. filter: grayscale(1);
  118. }
  119. #kofi {
  120. text-align: center;
  121. margin-top: 50px;
  122. margin-bottom: -20px;
  123. }
  124. #subheader {
  125. font-size: 27pt;
  126. padding-top: -500px;
  127. font-weight: normal;
  128. }
  129. #authorship {
  130. text-align: center;
  131. font-size: 22pt;
  132. margin-top: -25px;
  133. }
  134. #synopsis {
  135. margin-top: 18pt;
  136. font-size: 27pt;
  137. cursor: auto;
  138. }
  139. #synopsis p {
  140. line-height: 1.25;
  141. }
  142. #navigation, .navigation {
  143. text-align: center;
  144. font-size: 27pt;
  145. width: 100%;
  146. }
  147. #navigation h2 {
  148. margin-bottom: 20px;
  149. }
  150. b, strong {
  151. color: white;
  152. }
  153. footer p {
  154. text-align: center;
  155. font-size: 14pt;
  156. }
  157. ::-moz-selection {
  158. color: black;
  159. background: #acc;
  160. }
  161. ::selection {
  162. color: black;
  163. background: #acc;
  164. }
  165. img {
  166. image-rendering: -moz-crisp-edges;
  167. image-rendering: -o-crisp-edges;
  168. image-rendering: -webkit-optimize-contrast;
  169. image-rendering: pixelated;
  170. image-rendering: optimize-contrast;
  171. -ms-interpolation-mode: nearest-neighbor;
  172. image-rendering: crisp-edges;
  173. }
  174. @font-face {
  175. font-family: "Linux Libertine";
  176. font-style: normal;
  177. src: url(fonts/LinuxLibertine-Regular.woff2) format("woff2");
  178. }
  179. @font-face {
  180. font-family: "Linux Libertine";
  181. font-weight: bold;
  182. src: url(fonts/LinuxLibertine-Bold.woff2) format("woff2");
  183. }
  184. @font-face {
  185. font-family: "Linux Libertine";
  186. font-style: italic;
  187. src: url(fonts/LinuxLibertine-Italic.woff2) format("woff2");
  188. }
  189. @font-face {
  190. font-family: "Linux Libertine";
  191. font-style: italic;
  192. font-weight: bold;
  193. src: url(fonts/LinuxLibertine-BoldItalic.woff2) format("woff2");
  194. }