style.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. html {
  2. margin-top: 75px;
  3. }
  4. body {
  5. background-color: black;
  6. font-family: "IBM Plex Serif", "Liberation Serif", "FreeSerif", serif;
  7. color: #ccc;
  8. }
  9. header {
  10. font-size: 108pt;
  11. font-weight: bold;
  12. text-align: center;
  13. line-height: 0.6;
  14. }
  15. header a {
  16. text-decoration: none;
  17. }
  18. header a:hover {
  19. text-decoration: none;
  20. }
  21. main, footer, #navigation {
  22. width: 70%;
  23. margin: auto;
  24. }
  25. img {
  26. max-width: 100%;
  27. height: auto;
  28. }
  29. h1 {
  30. font-family: "IBM Plex Sans", "Liberation Sans", "FreeSans", sans;
  31. font-size: 52pt;
  32. text-align: center;
  33. color: white;
  34. margin-top: 50px;
  35. }
  36. h2 {
  37. font-family: "IBM Plex Sans", "Liberation Sans", "FreeSans", sans;
  38. font-size: 36pt;
  39. text-align: center;
  40. color: white;
  41. margin-bottom: -5px;
  42. }
  43. h2 a {
  44. text-decoration: none;
  45. color: white;
  46. }
  47. h2 a:hover {
  48. color: #B5D1B1;
  49. }
  50. h3 {
  51. font-family: "IBM Plex Sans", "Liberation Sans", "FreeSans", sans;
  52. font-size: 22pt;
  53. color: white;
  54. margin-bottom: 20px;
  55. }
  56. h3 a {
  57. text-decoration: none;
  58. color: white;
  59. }
  60. h3 a:hover {
  61. color: #B5D1B1;
  62. }
  63. p {
  64. font-size: 16pt;
  65. text-align: left;
  66. hyphens: auto;
  67. line-height: 1.5;
  68. text-indent: 32pt;
  69. }
  70. p a:hover {
  71. text-decoration: none;
  72. }
  73. a {
  74. color: white;
  75. }
  76. a:hover {
  77. text-decoration: underline;
  78. color: #B5D1B1;
  79. }
  80. table {
  81. width: 100%;
  82. font-size: 16pt;
  83. padding-right: 4%;
  84. margin-left: -2%;
  85. text-align: center;
  86. }
  87. td {
  88. padding-bottom: 3px;
  89. padding-top: 3px;
  90. }
  91. time {
  92. color: #ccc;
  93. }
  94. summary {
  95. font-family: "IBM Plex Sans", "Liberation Sans", "FreeSans", sans;
  96. font-weight: bold;
  97. color: white;
  98. cursor: pointer;
  99. width: 240px;
  100. height: 50px;
  101. text-align: center;
  102. margin: auto;
  103. margin-top: 30px;
  104. }
  105. .bigcenter {
  106. text-align: center;
  107. font-size: 34pt;
  108. }
  109. .preview {
  110. float: left;
  111. }
  112. .center {
  113. text-align: center;
  114. }
  115. .hangover-subheader {
  116. font-weight: normal;
  117. margin-top: -20px;
  118. text-align: center;
  119. }
  120. .date {
  121. text-align: center;
  122. font-size: 32pt;
  123. margin-top: -35px;
  124. }
  125. #subheader {
  126. font-size: 20pt;
  127. font-weight: normal;
  128. }
  129. #synopsis {
  130. margin-top: 18pt;
  131. font-size: 27pt;
  132. cursor: auto;
  133. }
  134. #synopsis p {
  135. line-height: 1.25;
  136. }
  137. #navigation, .navigation {
  138. font-family: "IBM Plex Sans", "Liberation Sans", "FreeSans", sans;
  139. font-size: 27pt;
  140. text-align: center;
  141. width: 100%;
  142. }
  143. #navigation a:hover {
  144. text-decoration: none;
  145. }
  146. #navigation h2 {
  147. margin-bottom: 20px;
  148. }
  149. b, strong {
  150. color: white;
  151. }
  152. footer {
  153. line-height: 2.4pt;
  154. margin-bottom: 50px;
  155. margin-top: 30px;
  156. }
  157. footer p {
  158. text-align: center;
  159. font-size: 12pt;
  160. margin-bottom: 30px;
  161. margin-left: -42px;
  162. }
  163. footer img {
  164. image-rendering: -moz-crisp-edges;
  165. image-rendering: -o-crisp-edges;
  166. image-rendering: -webkit-optimize-contrast;
  167. image-rendering: pixelated;
  168. image-rendering: optimize-contrast;
  169. -ms-interpolation-mode: nearest-neighbor;
  170. image-rendering: crisp-edges;
  171. }
  172. ::-moz-selection {
  173. color: black;
  174. background: #B5D1B1;
  175. }
  176. ::selection {
  177. color: black;
  178. background: #B5D1B1;
  179. }
  180. /* Web font buggery ahead.
  181. There are no local font declarations
  182. because nobody has IBM Plex installed
  183. you weirdo. */
  184. /* Serif fonts */
  185. @font-face {
  186. font-family: "IBM Plex Serif";
  187. font-style: normal;
  188. src: url(fonts/IBMPlexSerif-Regular.woff2) format("woff2");
  189. }
  190. @font-face {
  191. font-family: "IBM Plex Serif";
  192. font-weight: bold;
  193. src: url(fonts/IBMPlexSerif-Bold.woff2) format("woff2");
  194. }
  195. @font-face {
  196. font-family: "IBM Plex Serif";
  197. font-style: italic;
  198. src: url(fonts/IBMPlexSerif-Italic.woff2) format("woff2");
  199. }
  200. @font-face {
  201. font-family: "IBM Plex Serif";
  202. font-style: italic;
  203. font-weight: bold;
  204. src: url(fonts/IBMPlexSerif-BoldItalic.woff2) format("woff2");
  205. }
  206. /* Sans fonts */
  207. @font-face {
  208. font-family: "IBM Plex Sans";
  209. font-style: normal;
  210. src: url(fonts/IBMPlexSans-Regular.woff2) format("woff2");
  211. }
  212. @font-face {
  213. font-family: "IBM Plex Sans";
  214. font-weight: bold;
  215. src: url(fonts/IBMPlexSans-Bold.woff2) format("woff2");
  216. }
  217. @font-face {
  218. font-family: "IBM Plex Sans";
  219. font-style: italic;
  220. src: url(fonts/IBMPlexSans-Italic.woff2) format("woff2");
  221. }
  222. @font-face {
  223. font-family: "IBM Plex Sans";
  224. font-style: italic;
  225. font-weight: bold;
  226. src: url(fonts/IBMPlexSans-BoldItalic.woff2) format("woff2");
  227. }