The crux.sexy website
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

312 wiersze
4.5 KiB

  1. html, body, div, span, applet, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. a, abbr, acronym, address, big, cite, code,
  4. del, dfn, em, img, ins, kbd, q, s, samp,
  5. small, strike, strong, sub, sup, tt, var,
  6. b, u, i, center,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td,
  10. article, aside, canvas, details, embed,
  11. figure, figcaption, footer, header, hgroup,
  12. menu, nav, output, ruby, section, summary,
  13. time, mark, audio, video {
  14. margin: 0;
  15. padding: 0;
  16. border: 0;
  17. font-size: 100%;
  18. font: inherit;
  19. vertical-align: baseline;
  20. }
  21. /* HTML5 display-role reset for older browsers */
  22. article, aside, details, figcaption, figure,
  23. footer, header, hgroup, menu, nav, section {
  24. display: block;
  25. }
  26. body {
  27. line-height: 1;
  28. }
  29. ol, ul {
  30. list-style: none;
  31. }
  32. blockquote, q {
  33. quotes: none;
  34. }
  35. blockquote:before, blockquote:after,
  36. q:before, q:after {
  37. content: '';
  38. content: none;
  39. }
  40. table {
  41. border-collapse: collapse;
  42. border-spacing: 0;
  43. }
  44. body, html {
  45. height: 100%;
  46. width: 100%;
  47. }
  48. body {
  49. display: flex;
  50. justify-content: center;
  51. text-align: center;
  52. flex-direction: column;
  53. font-family: sans-serif;
  54. background-color: #100d1e;
  55. }
  56. @import url("https://fonts.googleapis.com/css?family=Source+Code+Pro:400,200,700");
  57. .game {
  58. font-size: 100px;
  59. }
  60. .nightly {
  61. background-color: #310909;
  62. color: #cd79cd;
  63. }
  64. .box {
  65. margin: 5vw;
  66. flex-wrap: center;
  67. }
  68. .heading {
  69. font-size: 100px;
  70. color: #7991cd;
  71. }
  72. .body {
  73. font-size: 40px;
  74. color: #7991cd;
  75. }
  76. .footer {
  77. position: sticky;
  78. top: 95%;
  79. color: #58678e;
  80. }
  81. a {
  82. font-size: 40px;
  83. color: #b6acd8;
  84. text-decoration: none;
  85. }
  86. a:hover {
  87. color: #726899;
  88. }
  89. .goodyeet {
  90. color: #7991cd;
  91. background-color: #344b85;
  92. border-width: 3px;
  93. }
  94. .badyeet {
  95. color: #cd7984;
  96. background-color: #752020;
  97. border-width: 3px;
  98. }
  99. @media (min-aspect-ratio: 1/1) {
  100. .button {
  101. width: 15vw;
  102. height: 8vw;
  103. font-size: 3vw;
  104. }
  105. }
  106. @media (max-aspect-ratio: 1/1) {
  107. .button {
  108. width: 50vw;
  109. height: 20vw;
  110. font-size: 10vw;
  111. }
  112. }
  113. .flex-container {
  114. display: flex;
  115. flex-direction: row;
  116. justify-content: center;
  117. flex-wrap: wrap;
  118. position: static;
  119. top: 0%;
  120. max-height: 60%;
  121. }
  122. @keyframes fadein {
  123. from { opacity: 0; }
  124. to { opacity: 1; }
  125. }
  126. .game-button {
  127. user-select: none;
  128. position: relative;
  129. transition: 0.2s;
  130. transform: scale(1, 1);
  131. }
  132. @media (max-aspect-ratio: 1/1) {
  133. .game-button .game-logo {
  134. width: 40vw;
  135. }
  136. }
  137. @media (min-aspect-ratio: 1/1) {
  138. .game-button .game-logo {
  139. width: 40vh;
  140. }
  141. }
  142. #game-button-stroll {
  143. animation: fadein 1s;
  144. }
  145. #game-button-feast {
  146. animation: fadein 1s;
  147. }
  148. #game-button-gorge {
  149. animation: fadein 1s;
  150. }
  151. #game-button-satiate {
  152. animation: fadein 1s;
  153. }
  154. .game-logo {
  155. opacity: 0.5;
  156. transition: 0.2s;
  157. }
  158. .game-button:hover {
  159. transition: 0.2s;
  160. transform: scale(1.25, 1.25);
  161. }
  162. .game-button:hover > .game-logo {
  163. opacity: 1;
  164. }
  165. .game-title {
  166. position: absolute;
  167. color: red;
  168. left: 50%;
  169. top: 50%;
  170. transform: translate(-50%, -50%) scale(1, 1);
  171. z-index: 1;
  172. font-family: 'Source Code Pro';
  173. }
  174. @media (max-aspect-ratio: 1/1) {
  175. .game-title {
  176. font-size: 6vh;
  177. }
  178. }
  179. @media (min-aspect-ratio: 1/1) {
  180. .game-title {
  181. font-size: 9vh;
  182. }
  183. }
  184. .game-button:hover > .game-title {
  185. transform: translate(-50%, -50%) scale(1.25, 1.25);
  186. transition: 0.4s ease-out;
  187. }
  188. .game-description {
  189. width: 80%;
  190. display: none;
  191. position: fixed;
  192. left: 50%;
  193. transform: translate(-50%, 0);
  194. font-size: 48px;
  195. color: gray;
  196. font-family: 'Source Code Pro', monospace;
  197. }
  198. @media (max-aspect-ratio: 1/1) {
  199. .game-title {
  200. font-size: 6vh;
  201. }
  202. .game-description {
  203. bottom: 10%;
  204. }
  205. }
  206. @media (min-aspect-ratio: 1/1) {
  207. .game-title {
  208. font-size: 9vh;
  209. }
  210. .game-description {
  211. bottom: 10%;
  212. }
  213. }
  214. .game-button:hover + .game-description {
  215. display: inline;
  216. }
  217. .title {
  218. color: gray;
  219. position: fixed;
  220. left: 50%;
  221. top: 10%;
  222. transform: translate(-50%, 0);
  223. font-family: 'Source Code Pro', monospace;
  224. }
  225. @media (max-aspect-ratio: 1/1) {
  226. .title {
  227. font-size: 10vh;
  228. top: 5%;
  229. }
  230. }
  231. @media (min-aspect-ratio: 1/1) {
  232. .title {
  233. font-size: 10vh;
  234. top: 10%;
  235. }
  236. }
  237. .switcher {
  238. text-align: center;
  239. background-color: pink;
  240. min-width: 300px;
  241. min-height: 100px;
  242. position: fixed;
  243. right: -100px;
  244. top: 0px;
  245. transform: rotate(45deg);
  246. }
  247. .switcher-text {
  248. position: relative;
  249. color: black;
  250. font-size: 24px;
  251. top: 25px;
  252. }
  253. .discord {
  254. text-align: center;
  255. background-color: pink;
  256. min-width: 300px;
  257. min-height: 100px;
  258. position: fixed;
  259. left: -100px;
  260. top: 0px;
  261. transform: rotate(-45deg);
  262. }
  263. .discord-text {
  264. position: relative;
  265. color: black;
  266. font-size: 24px;
  267. top: 40px;
  268. }