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.
 
 
 

854 lines
13 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. margin: 10px auto;
  377. }
  378. .flex-outer input[type="radio"],
  379. .flex-outer input[type="checkbox"] {
  380. display: none;
  381. }
  382. .flex-outer input[type="radio"] + label:not(.custom-header),
  383. .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  384. user-select: none;
  385. flex: 1 0 100%;
  386. font-size: 24px;
  387. }
  388. body.dark .flex-outer input[type="radio"] + label:not(.custom-header),
  389. body.dark .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  390. color: #888;
  391. background: #311;
  392. }
  393. body.dark .flex-outer input[type="radio"]:checked + label:not(.custom-header),
  394. body.dark .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) {
  395. color: #fff;
  396. background: #131;
  397. }
  398. body.light .flex-outer input[type="radio"] + label:not(.custom-header),
  399. body.light .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  400. color: #555;
  401. background: #faa;
  402. }
  403. body.light .flex-outer input[type="radio"]:checked + label:not(.custom-header),
  404. body.light .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) {
  405. color: #111;
  406. background: #afa;
  407. }
  408. .flex-outer label {
  409. flex: 0 1 40%;
  410. text-align: right;
  411. margin-right: 12pt;
  412. }
  413. .flex-outer label.solo {
  414. text-align: center;
  415. }
  416. .flex-outer label + * {
  417. flex: 1 1 20%;
  418. }
  419. .preview {
  420. flex: 1 1 10%;
  421. }
  422. .flex-outer-sub {
  423. padding: 0px;
  424. align-items: center;
  425. }
  426. .flex-outer-sub li {
  427. display: flex;
  428. flex-wrap: nowrap;
  429. align-items: center;
  430. margin: 5px auto;
  431. width: 90%;
  432. }
  433. body.light .has-tooltip {
  434. position: relative;
  435. display: inline-block;
  436. border-bottom: 1px dotted black;
  437. }
  438. body.dark .has-tooltip {
  439. position: relative;
  440. display: inline-block;
  441. border-bottom: 1px dotted white;
  442. }
  443. body.light a {
  444. color: #0000FF;
  445. text-decoration: none;
  446. }
  447. body.light a:visited {
  448. color: #0000ff;
  449. }
  450. body.light a:hover {
  451. color: #2222EE;
  452. }
  453. body.dark a {
  454. color: #8888FF;
  455. text-decoration: none;
  456. }
  457. body.dark a:visited {
  458. color: #8888DD;
  459. }
  460. body.dark a:hover {
  461. color: #AAAAEE;
  462. }
  463. a:hover {
  464. text-shadow: 0px 0px 5px #eeeeff;
  465. text-decoration: none;
  466. }
  467. .character-build {
  468. margin: 50px;
  469. width: 90%;
  470. text-align: center;
  471. }
  472. #grow-panel {
  473. width: 100%;
  474. }
  475. th {
  476. font-weight: normal;
  477. }
  478. ul {
  479. list-style: none;
  480. }
  481. .action-tab {
  482. flex-wrap: wrap;
  483. display: none;
  484. width: 100%;
  485. }
  486. .action-part-button {
  487. border: 1px;
  488. font-size: 30px;
  489. width: 50%;
  490. height: 70px;
  491. display: none;
  492. }
  493. .action-part-button.active {
  494. background: #555;
  495. }
  496. /* SRC: https://stackoverflow.com/questions/29738787/filling-water-animation/29740828 */
  497. .meter {
  498. border-radius: 0%;
  499. width: 10%;
  500. height: 150px;
  501. overflow: hidden;
  502. backface-visibility: hidden;
  503. transform: translate3d(0, 0, 0);
  504. display: inline-block;
  505. }
  506. body.light .meter {
  507. background: #ddd !important;
  508. }
  509. body.dark .meter {
  510. background: #222 !important;
  511. }
  512. .meter .meterLabel {
  513. z-index: 1;
  514. writing-mode: vertical-lr;
  515. text-orientation: upright;
  516. background: none;
  517. transform: rotate(0deg);
  518. font-size: 12px;
  519. text-align: center;
  520. position: absolute;
  521. left: 50%;
  522. top: 50%;
  523. transform: translate(-50%, -50%);
  524. }
  525. body.light .meterLabel {
  526. color: #000;
  527. }
  528. body.dark .meterLabel {
  529. color: #fff;
  530. mix-blend-mode: exclusion;
  531. }
  532. .meter {
  533. display: none
  534. }
  535. .meter .fill {
  536. position: absolute;
  537. top: 0;
  538. left: 0;
  539. background: none;
  540. pointer-events: none;
  541. }
  542. .meter #waveShape {
  543. animation-name: waveAction;
  544. animation-iteration-count: infinite;
  545. animation-timing-function: linear;
  546. animation-duration: 0.5s;
  547. width:300px;
  548. height: 150px;
  549. fill: #04ACFF;
  550. }
  551. .meter#arousalMeter #waveShape {
  552. fill: #FF0000;
  553. }
  554. .meter#orgasmMeter #waveShape {
  555. fill: #FFFFFF;
  556. }
  557. .meter#edgeMeter #waveShape {
  558. fill: #FF6600;
  559. }
  560. .meter#cumMeter #waveShape {
  561. fill: #EEEEEE;
  562. }
  563. .meter#femcumMeter #waveShape {
  564. fill: #999999;
  565. }
  566. .meter#milkMeter #waveShape {
  567. fill: #FFFFFF;
  568. }
  569. .meter#gasMeter #waveShape {
  570. fill: #33FF33;
  571. }
  572. .meter#pissMeter #waveShape {
  573. fill: #FFFF33;
  574. }
  575. .meter#scatMeter #waveShape {
  576. animation-duration: 2s;
  577. fill: #552222;
  578. }
  579. @keyframes fillAction {
  580. 0% {
  581. transform: translate(0, 150px);
  582. }
  583. 100% {
  584. transform: translate(0, -5px);
  585. }
  586. }
  587. @keyframes waveAction {
  588. 0% {
  589. transform: translate(-150px, 0);
  590. }
  591. 100% {
  592. transform: translate(0, 0);
  593. }
  594. }
  595. /* stolen directly from w3schools lol */
  596. .shaking {
  597. animation: shake 1s;
  598. animation-iteration-count: infinite;
  599. }
  600. @keyframes shake {
  601. 0% { transform: translate(0px, 0px); }
  602. 10% { transform: translate(0px, -2px); }
  603. 25% { transform: translate(0px, 0px); }
  604. 100% { transform: translate(0px, 0px); }
  605. }
  606. .growth-box {
  607. width: 100%;
  608. display: flex;
  609. flex-wrap: wrap;
  610. flex-direction: column;
  611. flex: 0 1 400px;
  612. }
  613. .growth-box > div > * {
  614. margin: 0px;
  615. width: 100%;
  616. height: 50px;
  617. }
  618. #growth-box-left {
  619. height: 100%;
  620. }
  621. #growth-box-right {
  622. height: 100%;
  623. }
  624. .growth-part {
  625. display: none;
  626. }
  627. .growth-part-active {
  628. background: #555 !important;
  629. }
  630. .growth-amount {
  631. display: block;
  632. }
  633. .save-version {
  634. display: none;
  635. }
  636. #custom-characters {
  637. font-size: 24px;
  638. }
  639. .intro-text {
  640. font-size: 18px;
  641. }
  642. .log::-webkit-scrollbar {
  643. width: 3px;
  644. height: 2px;
  645. }
  646. .log::-webkit-scrollbar-button {
  647. width: 0px;
  648. height: 0px;
  649. }
  650. .log::-webkit-scrollbar-thumb {
  651. background: #e1e1e1;
  652. border: 0px none #ffffff;
  653. border-radius: 50px;
  654. }
  655. .log::-webkit-scrollbar-thumb:hover {
  656. background: #ffffff;
  657. }
  658. .log::-webkit-scrollbar-thumb:active {
  659. background: #000000;
  660. }
  661. .log::-webkit-scrollbar-track {
  662. background: #666666;
  663. border: 0px none #ffffff;
  664. border-radius: 50px;
  665. }
  666. .log::-webkit-scrollbar-track:hover {
  667. background: #666666;
  668. }
  669. .log::-webkit-scrollbar-track:active {
  670. background: #333333;
  671. }
  672. .log::-webkit-scrollbar-corner {
  673. background: transparent;
  674. }
  675. .custom-label {
  676. text-align: center;
  677. font-size: 30px;
  678. margin: auto;
  679. padding-top: 6px;
  680. padding-bottom: 6px;
  681. user-select: none;
  682. }
  683. .log {
  684. --fade-animation: none;
  685. scrollbar-color: #e1e1e1 #888;
  686. scrollbar-width: thin;
  687. }
  688. .log > div {
  689. animation: var(--fade-animation);
  690. animation-fill-mode: forwards;
  691. }
  692. @keyframes log-dim {
  693. 0% {
  694. opacity: 1;
  695. }
  696. 70% {
  697. opacity: 1;
  698. }
  699. 100% {
  700. opacity: 0.6;
  701. }
  702. }
  703. @keyframes log-fade {
  704. 0% {
  705. opacity: 1;
  706. }
  707. 70% {
  708. opacity: 1;
  709. height: auto;
  710. }
  711. 99% {
  712. opacity: 0;
  713. height: auto;
  714. }
  715. 100% {
  716. opacity: 0;
  717. height: 0;
  718. }
  719. }