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.

153 lines
2.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
  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. display: flex;
  15. flex-direction: column;
  16. height: 100%;
  17. width: 100%;
  18. }
  19. .wrapper {
  20. max-width: 70em;
  21. width: 100%;
  22. height: 100%;
  23. margin: 0 auto;
  24. background-color: #FFC63F;
  25. position: relative;
  26. box-sizing: border-box;
  27. padding: 20px;
  28. flex: 1;
  29. }
  30. .items {
  31. list-style: none;
  32. margin: 0;
  33. padding: 0;
  34. }
  35. .items > li {
  36. display: inline-block;
  37. }
  38. .items > li a {
  39. width: 120px;
  40. height: 120px;
  41. background: #D66C00;
  42. border-radius: 80px;
  43. display: block;
  44. border: 3px solid #1a1c1c;
  45. }
  46. .items > li a:hover {
  47. background-color: #f39a3f;
  48. z-index: 1;
  49. }
  50. .items > li.face-up a {
  51. background-color: #ed8112;
  52. background-size: contain;
  53. background-repeat: no-repeat;
  54. background-position: center;
  55. }
  56. .line {
  57. border-bottom: 3px solid #1a1c1c;
  58. height: 1.4em;
  59. text-align: center;
  60. position: absolute;
  61. transform-origin: 0 0;
  62. font-size: 1.2em;
  63. padding: 0 55px;
  64. box-sizing: border-box;
  65. }
  66. .fullview {
  67. width: 100%;
  68. height: 100%;
  69. position: fixed;
  70. left: 0;
  71. top: 0;
  72. background-color: #e1eef280;
  73. box-sizing: border-box;
  74. cursor: default;
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. }
  79. a.fullview {
  80. text-decoration: none;
  81. }
  82. .fullview > div {
  83. font-size: 1.2em;
  84. max-height: 100%;
  85. max-width: 75vh;
  86. background-color: #006680;
  87. padding: 1em;
  88. color: white;
  89. border-radius: 20px;
  90. border: 5px solid #1a1c1c;
  91. box-sizing: border-box;
  92. display: flex;
  93. flex-direction: column;
  94. }
  95. .fullview > div img {
  96. float: right;
  97. width: 120px;
  98. border-radius: 80px;
  99. border: 3px solid #1a1c1c;
  100. margin-bottom: 1em;
  101. }
  102. h1, .desc {
  103. font-family: "Fell Sc";
  104. margin-left: 0.5rem;
  105. }
  106. .fulltext {
  107. flex-grow: 1;
  108. background-color: #99d7e9;
  109. border-radius: 20px;
  110. border: 3px solid #1a1c1c;
  111. color: #1a1c1c;
  112. padding: 0 0.5em;
  113. overflow: auto;
  114. }
  115. .fulltext p {
  116. margin: 0.5em 0;
  117. }
  118. blockquote {
  119. background: #f9f9f9cc;
  120. border-left: .5em solid #1a1c1c66;
  121. margin: .5em;
  122. padding: .5em;
  123. quotes: "\201C""\201D""\2018""\2019";
  124. /* Otherwise the :before is larger than the blockquote and creates a scrollbar in the parent */
  125. min-height: 4em;
  126. }
  127. blockquote:before {
  128. color: #1a1c1c66;
  129. content: open-quote;
  130. font-size: 4em;
  131. line-height: 0.1em;
  132. margin-right: 0.25em;
  133. float: left;
  134. margin-top: 2.5rem;
  135. }
  136. aside {
  137. float: right;
  138. padding: 1em;
  139. }