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.

217 lines
3.5 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. @font-face {
  2. font-family: "Fell";
  3. src: url("/IMFePIit29P.ttf");
  4. }
  5. @font-face {
  6. font-family: "Fell Sc";
  7. src: url("/IMFePIsc29P.ttf");
  8. }
  9. body {
  10. background-color: #e1eef2;
  11. margin: 0;
  12. font-family: "Fell";
  13. hyphens: auto;
  14. height: 100%;
  15. width: 100%;
  16. }
  17. .wrapper {
  18. max-width: 70em;
  19. width: 100%;
  20. height: 100%;
  21. margin: 0 auto;
  22. background-color: #FFC63F;
  23. position: relative;
  24. box-sizing: border-box;
  25. padding: 1em;
  26. }
  27. .items {
  28. list-style: none;
  29. margin: 0;
  30. padding: 0;
  31. }
  32. .items > li {
  33. display: inline-block;
  34. }
  35. .items > li a {
  36. width: min(12vh, 12vw);
  37. height: min(12vh, 12vw);
  38. background: #D66C00;
  39. border-radius: min(7vh, 7vw);
  40. display: block;
  41. border: 3px solid #1a1c1c;
  42. }
  43. .items > li a:hover {
  44. background-color: #f39a3f;
  45. z-index: 1;
  46. }
  47. .items > li.face-up a {
  48. background-color: #ed8112;
  49. background-size: contain;
  50. background-repeat: no-repeat;
  51. background-position: center;
  52. }
  53. .line {
  54. border-bottom: 3px solid #1a1c1c;
  55. height: 1.4em;
  56. text-align: center;
  57. position: absolute;
  58. transform-origin: 0 0;
  59. padding: 0 min(6vh, 6vw);
  60. box-sizing: border-box;
  61. }
  62. @media (min-width: 30em) {
  63. .line {
  64. font-size: 1.2em;
  65. }
  66. }
  67. .fullview {
  68. width: 100%;
  69. height: 100%;
  70. position: fixed;
  71. left: 0;
  72. top: 0;
  73. background-color: #e1eef280;
  74. box-sizing: border-box;
  75. cursor: default;
  76. display: flex;
  77. align-items: center;
  78. justify-content: center;
  79. }
  80. a.fullview {
  81. text-decoration: none;
  82. }
  83. .fullview > div {
  84. font-size: 1.4em;
  85. line-height: 1;
  86. max-height: 100%;
  87. max-width: 75vh;
  88. background-color: #006680;
  89. padding: 1em;
  90. border-radius: 20px;
  91. border: 5px solid #1a1c1c;
  92. box-sizing: border-box;
  93. display: flex;
  94. flex-direction: column;
  95. overflow-y: auto;
  96. }
  97. .fullview > div, .fullview a {
  98. color: white;
  99. }
  100. @media (max-width: 30em) {
  101. .fullview > div {
  102. padding: 0.5em;
  103. }
  104. }
  105. .fullview > div img {
  106. float: right;
  107. width: 6em;
  108. height: 6em;
  109. border-radius: 6em;
  110. border: 3px solid #1a1c1c;
  111. margin-bottom: 1em;
  112. box-sizing: border-box;
  113. }
  114. header, .work {
  115. font-family: "Fell Sc";
  116. }
  117. h1 {
  118. margin: 1.4rem 0.5rem 0.5em;
  119. }
  120. .desc {
  121. margin: 1em 0.5rem;
  122. }
  123. /* This wrapper is necessary so that the scrollbar doesn't clip out of
  124. * the rounded border */
  125. .fulltext-wrapper {
  126. flex-grow: 1;
  127. background-color: #99d7e9;
  128. border-radius: 20px;
  129. border: 3px solid #1a1c1c;
  130. padding: calc(0.7rem - 3px);
  131. color: #1a1c1c;
  132. overflow: hidden;
  133. }
  134. .fulltext {
  135. padding: 0 0.5em;
  136. overflow-y: auto;
  137. height: 100%;
  138. font-size: 1.2rem;
  139. line-height: 1.4rem;
  140. }
  141. .fulltext p {
  142. margin: 0.7rem 0;
  143. }
  144. blockquote {
  145. background: #f9f9f9cc;
  146. border-left: .5em solid #1a1c1c66;
  147. margin: .5em;
  148. padding: .5em;
  149. quotes: "\201C""\201D""\2018""\2019";
  150. /* Otherwise the :before is larger than the blockquote and creates a scrollbar in the parent */
  151. min-height: 4em;
  152. color: black;
  153. flex-shrink: 0;
  154. }
  155. blockquote:before {
  156. color: #1a1c1c66;
  157. content: open-quote;
  158. font-size: 4em;
  159. line-height: 0.1em;
  160. margin-right: 0.25em;
  161. float: left;
  162. margin-top: 2.5rem;
  163. }
  164. .continue {
  165. position: absolute;
  166. right: 0;
  167. bottom: 0;
  168. padding: 0.5rem 1rem;
  169. font-size: 2rem;
  170. border-radius: 20px;
  171. margin: 0.5rem;
  172. background: #D66C00;
  173. border: 3px solid #1a1c1c;
  174. display: block;
  175. cursor: pointer;
  176. transform: scale(1);
  177. animation: pulse 1s infinite alternate;
  178. text-decoration: none;
  179. color: black;
  180. }
  181. @keyframes pulse {
  182. from {
  183. transform: scale(0.9);
  184. }
  185. to {
  186. transform: scale(1);
  187. }
  188. }
  189. .continue:hover {
  190. background-color: #f39a3f;
  191. animation: none;
  192. }
  193. .sources a {
  194. font-family: Fell Sc;
  195. }