big steppy
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

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