big steppy
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.
 
 
 

805 lines
12 KiB

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