The crux.sexy website
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

220 líneas
3.2 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. .game {
  57. font-size: 100px;
  58. }
  59. .nightly {
  60. background-color: #5b285f;
  61. color: #cd79cd;
  62. }
  63. .box {
  64. margin: 5vw;
  65. flex-wrap: center;
  66. }
  67. .heading {
  68. font-size: 100px;
  69. color: #7991cd;
  70. }
  71. .body {
  72. font-size: 40px;
  73. color: #7991cd;
  74. }
  75. .footer {
  76. position: sticky;
  77. top: 95%;
  78. color: #58678e;
  79. }
  80. a {
  81. font-size: 40px;
  82. color: #b6acd8;
  83. text-decoration: none;
  84. }
  85. a:hover {
  86. color: #726899;
  87. }
  88. .goodyeet {
  89. color: #7991cd;
  90. background-color: #344b85;
  91. border-width: 3px;
  92. }
  93. .badyeet {
  94. color: #cd7984;
  95. background-color: #752020;
  96. border-width: 3px;
  97. }
  98. @media (min-aspect-ratio: 1/1) {
  99. .button {
  100. width: 15vw;
  101. height: 8vw;
  102. font-size: 3vw;
  103. }
  104. }
  105. @media (max-aspect-ratio: 1/1) {
  106. .button {
  107. width: 50vw;
  108. height: 20vw;
  109. font-size: 10vw;
  110. }
  111. }
  112. .flex-container {
  113. display: flex;
  114. flex-direction: row;
  115. justify-content: center;
  116. flex-wrap: wrap;
  117. }
  118. .game-button {
  119. user-select: none;
  120. position: relative;
  121. width: 40vh;
  122. }
  123. .game-logo {
  124. width: 40vh;
  125. opacity: 0.5;
  126. }
  127. .game-button:hover > .game-logo {
  128. opacity: 1;
  129. }
  130. .game-title {
  131. position: absolute;
  132. color: rgb(183, 16, 206);
  133. font-size: 10vh;
  134. left: 50%;
  135. top: 50%;
  136. transform: translate(-50%, -50%);
  137. z-index: 1;
  138. transition: 0.2s;
  139. }
  140. .game-button:hover > .game-title {
  141. font-size: 12vh;
  142. }
  143. .game-description {
  144. display: none;
  145. position: fixed;
  146. left: 50%;
  147. top: 80%;
  148. transform: translate(-50%, 0);
  149. }
  150. .game-button:hover > .game-description {
  151. display: inline;
  152. }
  153. .title {
  154. font-size: 100px;
  155. color: rgb(183, 16, 206);
  156. position: fixed;
  157. left: 50%;
  158. top: 10%;
  159. transform: translate(-50%, 0);
  160. }
  161. .switcher {
  162. text-align: center;
  163. background-color: pink;
  164. min-width: 300px;
  165. min-height: 100px;
  166. position: fixed;
  167. right: -100px;
  168. top: 0px;
  169. transform: rotate(45deg);
  170. }
  171. .switcher-text {
  172. position: relative;
  173. color: black;
  174. font-size: 24px;
  175. top: 25px;
  176. }
  177. .discord {
  178. text-align: center;
  179. background-color: pink;
  180. min-width: 300px;
  181. min-height: 100px;
  182. position: fixed;
  183. left: -100px;
  184. top: 0px;
  185. transform: rotate(-45deg);
  186. }
  187. .discord-text {
  188. position: relative;
  189. color: black;
  190. font-size: 24px;
  191. top: 40px;
  192. }