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

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