Advertisement
Xelieu

(Modern - Styling) Kanken Deck (Quizmaster's)

Jan 26th, 2023 (edited)
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. /* .night-mode = pc, .night_mode = mobile */
  2. /* General Settings */
  3. .card {
  4. height: 100%;
  5. display: -webkit-box;
  6. -webkit-box-align: stretch;
  7. -webkit-box-pack: center;
  8. -webkit-box-orient: vertical;
  9. margin: 1;
  10. padding: 0;
  11. font-family: UD Digi Kyokasho N-R, GenEi Koburi Mincho v5 Regular, IPAexGothic, MS UI Gothic;
  12. text-align: center;
  13. background-color: #DEE4E7;
  14. font-size: 15px;
  15. }
  16.  
  17. .night-mode .card {
  18. background-color: #06040D;
  19. }
  20.  
  21. .night_mode .card {
  22. background-color: #06040D;
  23. }
  24.  
  25. .font-big {
  26. font-size: 50px;
  27. }
  28.  
  29. .font-medium {
  30. font-size: 30px;
  31. }
  32.  
  33. .font-small {
  34. font-size: 20px;
  35. }
  36.  
  37. .font-smaller {
  38. font-size: 12px;
  39. }
  40.  
  41. .pitch-size {
  42. font-size: 25px;
  43. }
  44.  
  45. /* Top */
  46. #expression {
  47. width: 80%;
  48. margin: 1em auto 1em;
  49. background-color: #FFCD58;
  50. color: #000000;
  51. border-radius: 10px;
  52. padding: 0.2em 0;
  53. }
  54.  
  55. .night-mode #expression {
  56. background-color: #009494;
  57. color: #FFFFFF;
  58. }
  59.  
  60. .night_mode #expression {
  61. background-color: #009494;
  62. color: #FFFFFF;
  63. }
  64.  
  65. /* Glossary Box */
  66. #usage {
  67. padding: 2% 10%;
  68. margin: 1% 5%;
  69. color: #000000;
  70. background-color: #DEE4E7;
  71. border: solid grey;
  72. border-radius: 15px;
  73. }
  74. .night-mode #usage {
  75. color: #fff;
  76. background-color: #0B0716;
  77. border-color: #7F7F7F;
  78. }
  79. .night_mode #usage {
  80. color: #FFFFFF;
  81. background-color: #0B0716;
  82. border-color: #7F7F7F;
  83. }
  84.  
  85. /* Bottom */
  86. /* img also affects diagram size */
  87. img {
  88. width: auto;
  89. height: auto;
  90. max-width: 260px;
  91. max-height: 210px;
  92. }
  93.  
  94. .NSFW img {
  95. filter: blur(30px);
  96. }
  97.  
  98. .NSFW img:hover {
  99. filter: blur(0px);
  100. }
  101.  
  102. /* Sentence Design */
  103. .sentence {
  104. color: #000000;
  105. }
  106.  
  107. .night-mode .sentence {
  108. color: #FFFFFF;
  109. }
  110.  
  111. .night_mode .sentence {
  112. color: #FFFFFF;
  113. }
  114.  
  115. b {
  116. font-weight: 500;
  117. color: #FF8300;
  118. }
  119.  
  120. .night-mode b {
  121. font-weight: 500;
  122. color: #A4A4FF;
  123. }
  124.  
  125. .night_mode b {
  126. font-weight: 500;
  127. color: #A4A4FF;
  128. }
  129.  
  130. /* Extra Design */
  131. #extra {
  132. padding: 1% 1%;
  133. color: #000000;
  134. background-color: #DEE4E7;
  135. border: solid grey;
  136. border-radius: 15px;
  137. }
  138.  
  139. .night-mode #extra {
  140. color: #FFFFFF;
  141. background-color: #0B0716;
  142. border-color: #7F7F7F;
  143. }
  144. .night_mode #extra {
  145. color: #FFFFFF;
  146. background-color: #0B0716;
  147. border-color: #7F7F7F;
  148. }
  149.  
  150. .replay-button svg path {
  151. stroke: #325646;
  152. fill: #000000;
  153. }
  154.  
  155. .night-mode .replay-button svg path {
  156. stroke: #0B0716;
  157. fill: #FFFFFF;
  158. }
  159.  
  160. .night_mode .replay-button svg path {
  161. stroke: #0B0716;
  162. fill: #FFFFFF;
  163. }
  164.  
  165. .replay-button svg circle {
  166. fill: #DEE4E7;
  167. stroke: #DEE4E7;
  168. }
  169.  
  170. .night-mode .replay-button svg circle {
  171. fill: #0B0716;
  172. stroke: #0B0716;
  173. }
  174.  
  175. .night_mode .replay-button svg circle {
  176. fill: #0B0716;
  177. stroke: #0B0716;
  178. }
  179.  
  180. .replay-button {
  181. width: 35px;
  182. }
  183.  
  184. /* Mobile Settings */
  185. @media screen and (orientation:portrait) {
  186. .mobile .night_mode {
  187. background-color: #06040D;
  188. }
  189.  
  190. .mobile .font-big {
  191. font-size: 35px;
  192. }
  193.  
  194. .mobile .font-medium {
  195. font-size: 20px;
  196. }
  197.  
  198. .mobile .font-small {
  199. font-size: 13px;
  200. }
  201.  
  202. .mobile .font-smaller {
  203. font-size: 8px;
  204. }
  205.  
  206. .mobile img {
  207. width: auto;
  208. height: auto;
  209. max-width: 190px;
  210. max-height: 140px;
  211. }
  212. }
  213.  
  214. @media screen and (orientation:landscape) {
  215. .mobile .night_mode {
  216. background-color: #06040D;
  217. }
  218.  
  219. .mobile img {
  220. width: auto;
  221. height: auto;
  222. max-width: 210px;
  223. max-height: 160px;
  224. }
  225. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement