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.
 
 
 

803 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: 400px;
  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 400px;
  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. width: 400px;
  425. }
  426. body.light .has-tooltip {
  427. position: relative;
  428. display: inline-block;
  429. border-bottom: 1px dotted black;
  430. }
  431. body.dark .has-tooltip {
  432. position: relative;
  433. display: inline-block;
  434. border-bottom: 1px dotted white;
  435. }
  436. body.light a {
  437. color: #0000FF;
  438. text-decoration: none;
  439. }
  440. body.light a:visited {
  441. color: #0000ff;
  442. }
  443. body.light a:hover {
  444. color: #2222EE;
  445. }
  446. body.dark a {
  447. color: #8888FF;
  448. text-decoration: none;
  449. }
  450. body.dark a:visited {
  451. color: #8888DD;
  452. }
  453. body.dark a:hover {
  454. color: #AAAAEE;
  455. }
  456. a:hover {
  457. text-shadow: 0px 0px 5px #eeeeff;
  458. text-decoration: none;
  459. }
  460. .character-build {
  461. margin: 50px;
  462. width: 90%;
  463. text-align: center;
  464. }
  465. #grow-panel {
  466. width: 100%;
  467. }
  468. th {
  469. font-weight: normal;
  470. }
  471. ul {
  472. list-style: none;
  473. }
  474. .action-tab {
  475. flex-wrap: wrap;
  476. display: none;
  477. width: 100%;
  478. }
  479. .action-part-button {
  480. border: 1px;
  481. font-size: 30px;
  482. width: 50%;
  483. height: 70px;
  484. display: none;
  485. }
  486. .action-part-button.active {
  487. background: #555;
  488. }
  489. /* SRC: https://stackoverflow.com/questions/29738787/filling-water-animation/29740828 */
  490. .meter {
  491. border-radius: 0%;
  492. width: 10%;
  493. height: 150px;
  494. overflow: hidden;
  495. backface-visibility: hidden;
  496. transform: translate3d(0, 0, 0);
  497. display: inline-block;
  498. }
  499. body.light .meter {
  500. background: #ddd !important;
  501. }
  502. body.dark .meter {
  503. background: #222 !important;
  504. }
  505. .meter .meterLabel {
  506. z-index: 1;
  507. writing-mode: vertical-lr;
  508. text-orientation: upright;
  509. background: none;
  510. transform: rotate(0deg);
  511. font-size: 12px;
  512. text-align: center;
  513. position: absolute;
  514. left: 50%;
  515. top: 50%;
  516. transform: translate(-50%, -50%);
  517. }
  518. body.light .meterLabel {
  519. color: #000;
  520. }
  521. body.dark .meterLabel {
  522. color: #fff;
  523. mix-blend-mode: exclusion;
  524. }
  525. .meter {
  526. display: none
  527. }
  528. .meter .fill {
  529. position: absolute;
  530. top: 0;
  531. left: 0;
  532. background: none;
  533. pointer-events: none;
  534. }
  535. .meter #waveShape {
  536. animation-name: waveAction;
  537. animation-iteration-count: infinite;
  538. animation-timing-function: linear;
  539. animation-duration: 0.5s;
  540. width:300px;
  541. height: 150px;
  542. fill: #04ACFF;
  543. }
  544. .meter#arousalMeter #waveShape {
  545. fill: #FF0000;
  546. }
  547. .meter#orgasmMeter #waveShape {
  548. fill: #FFFFFF;
  549. }
  550. .meter#edgeMeter #waveShape {
  551. fill: #FF6600;
  552. }
  553. .meter#cumMeter #waveShape {
  554. fill: #EEEEEE;
  555. }
  556. .meter#femcumMeter #waveShape {
  557. fill: #999999;
  558. }
  559. .meter#milkMeter #waveShape {
  560. fill: #FFFFFF;
  561. }
  562. .meter#gasMeter #waveShape {
  563. fill: #33FF33;
  564. }
  565. .meter#pissMeter #waveShape {
  566. fill: #FFFF33;
  567. }
  568. .meter#scatMeter #waveShape {
  569. animation-duration: 2s;
  570. fill: #552222;
  571. }
  572. @keyframes fillAction {
  573. 0% {
  574. transform: translate(0, 150px);
  575. }
  576. 100% {
  577. transform: translate(0, -5px);
  578. }
  579. }
  580. @keyframes waveAction {
  581. 0% {
  582. transform: translate(-150px, 0);
  583. }
  584. 100% {
  585. transform: translate(0, 0);
  586. }
  587. }
  588. /* stolen directly from w3schools lol */
  589. .shaking {
  590. animation: shake 1s;
  591. animation-iteration-count: infinite;
  592. }
  593. @keyframes shake {
  594. 0% { transform: translate(0px, 0px); }
  595. 10% { transform: translate(0px, -2px); }
  596. 25% { transform: translate(0px, 0px); }
  597. 100% { transform: translate(0px, 0px); }
  598. }
  599. .growth-box {
  600. width: 100%;
  601. display: flex;
  602. flex-wrap: wrap;
  603. flex-direction: column;
  604. flex: 0 1 400px;
  605. }
  606. .growth-box > div > * {
  607. margin: 0px;
  608. width: 100%;
  609. height: 50px;
  610. }
  611. #growth-box-left {
  612. height: 100%;
  613. }
  614. #growth-box-right {
  615. height: 100%;
  616. }
  617. .growth-part {
  618. display: none;
  619. }
  620. .growth-part-active {
  621. background: #555 !important;
  622. }
  623. .growth-amount {
  624. display: block;
  625. }
  626. .save-version {
  627. display: none;
  628. }
  629. #custom-characters {
  630. font-size: 24px;
  631. }
  632. .intro-text {
  633. font-size: 18px;
  634. }
  635. .log::-webkit-scrollbar {
  636. width: 3px;
  637. height: 2px;
  638. }
  639. .log::-webkit-scrollbar-button {
  640. width: 0px;
  641. height: 0px;
  642. }
  643. .log::-webkit-scrollbar-thumb {
  644. background: #e1e1e1;
  645. border: 0px none #ffffff;
  646. border-radius: 50px;
  647. }
  648. .log::-webkit-scrollbar-thumb:hover {
  649. background: #ffffff;
  650. }
  651. .log::-webkit-scrollbar-thumb:active {
  652. background: #000000;
  653. }
  654. .log::-webkit-scrollbar-track {
  655. background: #666666;
  656. border: 0px none #ffffff;
  657. border-radius: 50px;
  658. }
  659. .log::-webkit-scrollbar-track:hover {
  660. background: #666666;
  661. }
  662. .log::-webkit-scrollbar-track:active {
  663. background: #333333;
  664. }
  665. .log::-webkit-scrollbar-corner {
  666. background: transparent;
  667. }
  668. .custom-label {
  669. text-align: center;
  670. font-size: 30px;
  671. width: 100%;
  672. padding-top: 6px;
  673. padding-bottom: 6px;
  674. }