big steppy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

711 satır
10 KiB

  1. .light {
  2. color: #000;
  3. background: #eee;
  4. font-family: Arial;
  5. }
  6. .dark {
  7. color: #eee;
  8. background: #111;
  9. font-family: Arial;
  10. }
  11. #character-presets {
  12. font-size: 24px;
  13. }
  14. #export-area {
  15. max-width: 80%;
  16. width: 80%;
  17. }
  18. body.dark input {
  19. color: #eee;
  20. background: #444;
  21. }
  22. body.dark select {
  23. color: #eee;
  24. background: #444;
  25. }
  26. body.light button {
  27. color: #000;
  28. background: #ddd;
  29. }
  30. body.dark button {
  31. color: #eee;
  32. background: #111;
  33. }
  34. body.dark div {
  35. background: #111;
  36. }
  37. .game-area {
  38. display: flex;
  39. margin: auto;
  40. }
  41. @media (max-aspect-ratio: 16/9){
  42. .game-area {
  43. width: 100%
  44. height: 60%;
  45. }
  46. #log {
  47. height: 80vh;
  48. max-height: 50vh;
  49. margin: 0 0 1vh 0;
  50. }
  51. #react-log {
  52. margin: 1vh 0 0 0;
  53. height: 40vh;
  54. }
  55. }
  56. @media (min-aspect-ratio: 16/10){
  57. .game-area {
  58. width: 90%
  59. }
  60. #log {
  61. float: left;
  62. height: 75vh;
  63. width: 48%;
  64. }
  65. #react-log {
  66. float: right;
  67. height: 75vh;
  68. width: 48%;
  69. }
  70. }
  71. #log-area {
  72. flex: 5;
  73. display:none;
  74. }
  75. #log {
  76. overflow: auto;
  77. padding: 25px;
  78. box-sizing: border-box;
  79. }
  80. #react-log {
  81. overflow: auto;
  82. padding: 25px;
  83. box-sizing: border-box;
  84. }
  85. body.light #react-log {
  86. color: #000;
  87. background-color: #e7e7e7;
  88. }
  89. body.light #react-log div {
  90. background-color: #e7e7e7;
  91. }
  92. body.dark #react-log {
  93. color: #eee;
  94. background-color: #151515;
  95. }
  96. body.dark #react-log div {
  97. background-color: #151515;
  98. }
  99. body.light #react-log {
  100. color: #000;
  101. background-color: #e7e7e7;
  102. }
  103. body.light #log div {
  104. background-color: #e7e7e7;
  105. }
  106. body.dark #log {
  107. color: #eee;
  108. background-color: #151515;
  109. }
  110. body.dark #log div {
  111. background-color: #151515;
  112. }
  113. .stat-header-self {
  114. font-weight: bold;
  115. font-size: 150%;
  116. min-width:250px;
  117. }
  118. .stat-header {
  119. font-weight: bold;
  120. font-size: 150%;
  121. min-width:130px;
  122. }
  123. .stat-line {
  124. font-weight: normal;
  125. font-size: 12pt;
  126. }
  127. .stat-line-hidden {
  128. font-weight: normal;
  129. font-size: 12pt;
  130. }
  131. .stat-line-hidden {
  132. display: none;
  133. position: relative;
  134. }
  135. .stat-line-hidden:before {
  136. content: attr(data-stat);
  137. position: absolute;
  138. text-align: center;
  139. top: 5px;
  140. left: 0;
  141. right: 0;
  142. }
  143. .stat-line-hidden .value {
  144. background-color: #0f0;
  145. display: inline-block;
  146. height: 24px;
  147. width: attr(data-percent percentage);
  148. }
  149. progress {
  150. background: blue;
  151. }
  152. .stat-percent-full {
  153. background: #f00;
  154. }
  155. .sidebar {
  156. display: none;
  157. flex-wrap: wrap;
  158. flex-direction: column;
  159. text-align: right;
  160. min-width: 250px;
  161. flex: 1;
  162. padding: 25px;
  163. }
  164. .preset-selector {
  165. height: 25px;
  166. }
  167. .option-container {
  168. margin: auto;
  169. }
  170. .button-container {
  171. flex-wrap: wrap;
  172. flex-direction: column;
  173. flex: 1;
  174. }
  175. .stat-container {
  176. width: 100%;
  177. display: flex;
  178. flex-wrap: wrap;
  179. flex-direction: row;
  180. flex: 1
  181. }
  182. .action-part-container {
  183. max-height: 1000px;
  184. display: flex;
  185. flex-wrap: wrap;
  186. }
  187. #action-panel {
  188. display: none;
  189. }
  190. .option-button {
  191. font-size: 20px;
  192. width: 120px;
  193. height: 75px;
  194. }
  195. #button-start {
  196. width:200px;
  197. height:100px;
  198. font-size: 32px;
  199. }
  200. .option-form {
  201. font-size: 16px;
  202. width: 300px;
  203. height: 100px;
  204. }
  205. .stat-button {
  206. font-size: 18px;
  207. width: 50%;
  208. height: 75px;
  209. }
  210. .action-button {
  211. font-size: 18px;
  212. width: 50%;
  213. height: 75px;
  214. display: none;
  215. }
  216. body.light .action-button-disabled {
  217. color: #777 !important;
  218. }
  219. body.dark .action-button-disabled {
  220. color: #aaa !important;
  221. }
  222. #victim-table {
  223. display: none;
  224. margin: auto;
  225. width: 80%;
  226. }
  227. .victim-table-cell {
  228. width: 10%;
  229. }
  230. .reveal-if-active {
  231. opacity: 0;
  232. max-height: 0;
  233. overflow: hidden;
  234. }
  235. input[type="radio"]:checked ~ .reveal-if-active,
  236. input[type="checkbox"]:checked ~ .reveal-if-active {
  237. opacity: 1;
  238. max-height: 500000px; /* little bit of a magic number :( */
  239. overflow: visible;
  240. }
  241. .flex-outer {
  242. width: 100%;
  243. display: flex;
  244. flex-direction: row;
  245. flex-wrap: wrap;
  246. text-align: center;
  247. justify-content: center;
  248. padding: 0px;
  249. }
  250. .custom-category {
  251. text-align: center;
  252. margin: 10px;
  253. width: 500px;
  254. }
  255. .custom-category-sub {
  256. text-align: center;
  257. margin: 10px;
  258. width: 400px;
  259. padding: 0px;
  260. margin: 0px 50px;
  261. }
  262. body.light .custom-category {
  263. background: #ddd;
  264. }
  265. body.dark .custom-category {
  266. background: #222;
  267. }
  268. body.dark .custom-category div {
  269. background: #222;
  270. }
  271. .custom-header-static {
  272. user-select: none;
  273. font-size: 250%;
  274. margin: 10px;
  275. display: inline-block;
  276. }
  277. body.light .custom-header-static {
  278. background: #ddd;
  279. }
  280. body.dark .custom-header-static {
  281. background: #555;
  282. }
  283. .custom-header {
  284. user-select: none;
  285. font-size: 250%;
  286. margin: 10px;
  287. display: inline-block;
  288. border-style: dotted;
  289. border-width: 1px;
  290. border-length: 5px;
  291. }
  292. .custom-category-sub .custom-header {
  293. font-size: 200%;
  294. }
  295. body.light .custom-header {
  296. color: #aaa;
  297. background: #ddd;
  298. }
  299. body.dark .custom-header {
  300. color: #555;
  301. background: #222;
  302. }
  303. body.light input[type="checkbox"]:checked+
  304. .custom-header {
  305. color: #000;
  306. border-style: solid;
  307. margin: 10px;
  308. background: #bbb;
  309. }
  310. body.dark input[type="checkbox"]:checked+
  311. .custom-header {
  312. color: #fff;
  313. border-style: solid;
  314. margin: 10px;
  315. background: #444;
  316. }
  317. .custom-header-checkbox {
  318. display: none;
  319. }
  320. .flex-outer li {
  321. display: flex;
  322. flex-wrap: wrap;
  323. align-items: center;
  324. text-align: center;
  325. width: 500px;
  326. }
  327. .flex-outer input[type="radio"],
  328. .flex-outer input[type="checkbox"] {
  329. display: none;
  330. }
  331. .flex-outer input[type="radio"] + label:not(.custom-header),
  332. .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  333. user-select: none;
  334. flex: 1 0 400px;
  335. font-size: 24px;
  336. }
  337. body.dark .flex-outer input[type="radio"] + label:not(.custom-header),
  338. body.dark .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  339. color: #888;
  340. background: #311;
  341. }
  342. body.dark .flex-outer input[type="radio"]:checked + label:not(.custom-header),
  343. body.dark .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) {
  344. color: #fff;
  345. background: #131;
  346. }
  347. body.light .flex-outer input[type="radio"] + label:not(.custom-header),
  348. body.light .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  349. color: #555;
  350. background: #faa;
  351. }
  352. body.light .flex-outer input[type="radio"]:checked + label:not(.custom-header),
  353. body.light .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) {
  354. color: #111;
  355. background: #afa;
  356. }
  357. .flex-outer label {
  358. flex: 0 1 40%;
  359. }
  360. .flex-outer label + * {
  361. flex: 1 1 20%;
  362. }
  363. .preview {
  364. flex: 1 1 10%;
  365. }
  366. .flex-outer-sub {
  367. padding: 0px;
  368. align-items: center;
  369. }
  370. .flex-outer-sub li {
  371. display: flex;
  372. flex-wrap: wrap;
  373. align-items: center;
  374. width: 400px;
  375. }
  376. body.light .has-tooltip {
  377. position: relative;
  378. display: inline-block;
  379. border-bottom: 1px dotted black;
  380. }
  381. body.dark .has-tooltip {
  382. position: relative;
  383. display: inline-block;
  384. border-bottom: 1px dotted white;
  385. }
  386. body.light a {
  387. color: #0000FF;
  388. text-decoration: none;
  389. }
  390. body.light a:visited {
  391. color: #0000AA;
  392. }
  393. body.light a:hover {
  394. color: #2222EE;
  395. }
  396. body.dark a {
  397. color: #8888FF;
  398. text-decoration: none;
  399. }
  400. body.dark a:visited {
  401. color: #8888DD;
  402. }
  403. body.dark a:hover {
  404. color: #AAAAEE;
  405. }
  406. a:hover {
  407. text-shadow: 0px 0px 5px #eeeeff;
  408. text-decoration: none;
  409. }
  410. .character-build {
  411. margin: 50px;
  412. width: 90%;
  413. text-align: center;
  414. }
  415. #grow-panel {
  416. width: 100%;
  417. }
  418. th {
  419. font-weight: normal;
  420. }
  421. ul {
  422. list-style: none;
  423. }
  424. .action-tab {
  425. flex-wrap: wrap;
  426. display: none;
  427. width: 100%;
  428. }
  429. .action-part-button {
  430. border: 1px;
  431. font-size: 30px;
  432. width: 50%;
  433. height: 70px;
  434. display: none;
  435. }
  436. .action-part-button.active {
  437. background: #555;
  438. }
  439. /* SRC: https://stackoverflow.com/questions/29738787/filling-water-animation/29740828 */
  440. .meter {
  441. border-radius: 0%;
  442. width: 10%;
  443. height: 150px;
  444. overflow: hidden;
  445. backface-visibility: hidden;
  446. transform: translate3d(0, 0, 0);
  447. display: inline-block;
  448. }
  449. body.light .meter {
  450. background: #ddd !important;
  451. }
  452. body.dark .meter {
  453. background: #222 !important;
  454. }
  455. .meter .meterLabel {
  456. z-index: 1;
  457. writing-mode: vertical-lr;
  458. text-orientation: upright;
  459. background: none;
  460. transform: rotate(0deg);
  461. font-size: 12px;
  462. text-align: center;
  463. position: absolute;
  464. left: 50%;
  465. top: 50%;
  466. transform: translate(-50%, -50%);
  467. }
  468. body.light .meterLabel {
  469. color: #000;
  470. }
  471. body.dark .meterLabel {
  472. color: #fff;
  473. mix-blend-mode: exclusion;
  474. }
  475. .meter {
  476. display: none
  477. }
  478. .meter .fill {
  479. position: absolute;
  480. top: 0;
  481. left: 0;
  482. background: none;
  483. pointer-events: none;
  484. }
  485. .meter #waveShape {
  486. animation-name: waveAction;
  487. animation-iteration-count: infinite;
  488. animation-timing-function: linear;
  489. animation-duration: 0.5s;
  490. width:300px;
  491. height: 150px;
  492. fill: #04ACFF;
  493. }
  494. .meter#arousalMeter #waveShape {
  495. fill: #FF0000;
  496. }
  497. .meter#orgasmMeter #waveShape {
  498. fill: #FFFFFF;
  499. }
  500. .meter#edgeMeter #waveShape {
  501. fill: #FF6600;
  502. }
  503. .meter#cumMeter #waveShape {
  504. fill: #EEEEEE;
  505. }
  506. .meter#femcumMeter #waveShape {
  507. fill: #999999;
  508. }
  509. .meter#milkMeter #waveShape {
  510. fill: #FFFFFF;
  511. }
  512. .meter#gasMeter #waveShape {
  513. fill: #33FF33;
  514. }
  515. .meter#pissMeter #waveShape {
  516. fill: #FFFF33;
  517. }
  518. .meter#scatMeter #waveShape {
  519. animation-duration: 2s;
  520. fill: #552222;
  521. }
  522. @keyframes fillAction {
  523. 0% {
  524. transform: translate(0, 150px);
  525. }
  526. 100% {
  527. transform: translate(0, -5px);
  528. }
  529. }
  530. @keyframes waveAction {
  531. 0% {
  532. transform: translate(-150px, 0);
  533. }
  534. 100% {
  535. transform: translate(0, 0);
  536. }
  537. }
  538. /* stolen directly from w3schools lol */
  539. .shaking {
  540. animation: shake 1s;
  541. animation-iteration-count: infinite;
  542. }
  543. @keyframes shake {
  544. 0% { transform: translate(0px, 0px); }
  545. 10% { transform: translate(0px, -2px); }
  546. 25% { transform: translate(0px, 0px); }
  547. 100% { transform: translate(0px, 0px); }
  548. }
  549. .growth-box {
  550. width: 100%;
  551. display: flex;
  552. flex-wrap: wrap;
  553. flex-direction: column;
  554. flex: 0 1 400px;
  555. }
  556. .growth-box > div > * {
  557. margin: 0px;
  558. width: 100%;
  559. height: 50px;
  560. }
  561. #growth-box-left {
  562. height: 100%;
  563. }
  564. #growth-box-right {
  565. height: 100%;
  566. }
  567. .growth-part {
  568. display: none;
  569. }
  570. .growth-part-active {
  571. background: #555 !important;
  572. }
  573. .growth-amount {
  574. display: block;
  575. }
  576. .save-version {
  577. display: none;
  578. }
  579. #custom-characters {
  580. font-size: 24px;
  581. }
  582. .intro-text {
  583. font-size: 18px;
  584. }