big steppy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

608 lignes
8.5 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. }
  45. }
  46. @media (min-aspect-ratio: 16/10){
  47. .game-area {
  48. width: 75%
  49. }
  50. }
  51. #log-area {
  52. flex: 5;
  53. display:none;
  54. }
  55. body.light #log {
  56. height: 900px;
  57. overflow: auto;
  58. color: #000;
  59. background-color: #fff;
  60. }
  61. body.dark #log {
  62. height: 900px;
  63. overflow: auto;
  64. color: #eee;
  65. background-color: #111;
  66. }
  67. .stat-header-self {
  68. font-weight: bold;
  69. font-size: 150%;
  70. min-width:250px;
  71. }
  72. .stat-header {
  73. font-weight: bold;
  74. font-size: 150%;
  75. min-width:130px;
  76. }
  77. .stat-line {
  78. font-weight: normal;
  79. font-size: 12pt;
  80. }
  81. .stat-line-hidden {
  82. font-weight: normal;
  83. font-size: 12pt;
  84. }
  85. .stat-line-hidden {
  86. display: none;
  87. background-color: #f00;
  88. position: relative;
  89. }
  90. .stat-line-hidden:before {
  91. content: attr(data-stat);
  92. position: absolute;
  93. text-align: center;
  94. top: 5px;
  95. left: 0;
  96. right: 0;
  97. }
  98. .stat-line-hidden .value {
  99. background-color: #0f0;
  100. display: inline-block;
  101. height: 24px;
  102. width: attr(data-percent percentage);
  103. }
  104. progress {
  105. background: blue;
  106. }
  107. .stat-percent-full {
  108. background: #f00;
  109. }
  110. .sidebar {
  111. display: none;
  112. flex-wrap: wrap;
  113. flex-direction: column;
  114. text-align: right;
  115. min-width: 250px;
  116. flex: 1;
  117. }
  118. .preset-selector {
  119. height: 25px;
  120. }
  121. .option-container {
  122. margin: auto;
  123. }
  124. .button-container {
  125. flex-wrap: wrap;
  126. flex-direction: column;
  127. flex: 1;
  128. }
  129. .stat-container {
  130. width: 100%;
  131. display: flex;
  132. flex-wrap: wrap;
  133. flex-direction: row;
  134. flex: 1
  135. }
  136. .action-part-container {
  137. max-height: 1000px;
  138. display: flex;
  139. flex-wrap: wrap;
  140. }
  141. #action-panel {
  142. display: none;
  143. }
  144. .option-button {
  145. font-size: 20px;
  146. width: 120px;
  147. height: 75px;
  148. }
  149. #button-start {
  150. width:200px;
  151. height:100px;
  152. font-size: 32px;
  153. }
  154. .option-form {
  155. font-size: 16px;
  156. width: 300px;
  157. height: 100px;
  158. }
  159. .stat-button {
  160. font-size: 18px;
  161. width: 50%;
  162. height: 75px;
  163. }
  164. .action-button {
  165. font-size: 18px;
  166. width: 50%;
  167. height: 75px;
  168. display: none;
  169. }
  170. #victim-table {
  171. display: none;
  172. margin: auto;
  173. width: 80%;
  174. }
  175. .victim-table-cell {
  176. width: 10%;
  177. }
  178. .reveal-if-active {
  179. opacity: 0;
  180. max-height: 0;
  181. overflow: hidden;
  182. }
  183. input[type="radio"]:checked ~ .reveal-if-active,
  184. input[type="checkbox"]:checked ~ .reveal-if-active {
  185. opacity: 1;
  186. max-height: 500000px; /* little bit of a magic number :( */
  187. overflow: visible;
  188. }
  189. .flex-outer {
  190. width: 100%;
  191. display: flex;
  192. flex-direction: row;
  193. flex-wrap: wrap;
  194. text-align: center;
  195. justify-content: center;
  196. padding: 0px;
  197. }
  198. .custom-category {
  199. text-align: center;
  200. margin: 10px;
  201. width: 500px;
  202. }
  203. .custom-category-sub {
  204. text-align: center;
  205. margin: 10px;
  206. width: 400px;
  207. padding: 0px;
  208. margin: 0px 50px;
  209. }
  210. body.light .custom-category {
  211. background: #ddd;
  212. }
  213. body.dark .custom-category {
  214. background: #222;
  215. }
  216. body.dark .custom-category div {
  217. background: #222;
  218. }
  219. .custom-header-static {
  220. font-size: 250%;
  221. margin: 10px;
  222. display: inline-block;
  223. }
  224. body.light .custom-header-static {
  225. background: #ddd;
  226. }
  227. body.dark .custom-header-static {
  228. background: #555;
  229. }
  230. .custom-header {
  231. font-size: 250%;
  232. margin: 10px;
  233. display: inline-block;
  234. border-style: dotted;
  235. border-width: 1px;
  236. border-length: 5px;
  237. }
  238. .custom-category-sub .custom-header {
  239. font-size: 200%;
  240. }
  241. body.light .custom-header {
  242. color: #aaa;
  243. background: #ddd;
  244. }
  245. body.dark .custom-header {
  246. color: #555;
  247. background: #222;
  248. }
  249. body.light input[type="checkbox"]:checked+
  250. .custom-header {
  251. color: #000;
  252. border-style: solid;
  253. margin: 10px;
  254. background: #bbb;
  255. }
  256. body.dark input[type="checkbox"]:checked+
  257. .custom-header {
  258. color: #fff;
  259. border-style: solid;
  260. margin: 10px;
  261. background: #444;
  262. }
  263. .custom-header-checkbox {
  264. display: none;
  265. }
  266. .flex-outer li,
  267. .flex-inner {
  268. display: flex;
  269. flex-wrap: wrap;
  270. align-items: center;
  271. text-align: center;
  272. width: 500px;
  273. }
  274. .flex-outer input[type="radio"],
  275. .flex-outer input[type="checkbox"] {
  276. display: none;
  277. }
  278. .flex-outer input[type="radio"] + label:not(.custom-header),
  279. .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  280. user-select: none;
  281. flex: 1 0 400px;
  282. font-size: 24px;
  283. }
  284. body.dark .flex-outer input[type="radio"] + label:not(.custom-header),
  285. body.dark .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  286. color: #888;
  287. background: #311;
  288. }
  289. body.dark .flex-outer input[type="radio"]:checked + label:not(.custom-header),
  290. body.dark .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) {
  291. color: #fff;
  292. background: #131;
  293. }
  294. body.light .flex-outer input[type="radio"] + label:not(.custom-header),
  295. body.light .flex-outer input[type="checkbox"] + label:not(.custom-header) {
  296. color: #555;
  297. background: #faa;
  298. }
  299. body.light .flex-outer input[type="radio"]:checked + label:not(.custom-header),
  300. body.light .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) {
  301. color: #111;
  302. background: #afa;
  303. }
  304. .flex-outer label {
  305. flex: 0 1 40%;
  306. }
  307. .flex-outer label + * {
  308. flex: 1 1 20%;
  309. }
  310. .preview {
  311. flex: 1 1 10%;
  312. }
  313. .flex-outer-sub {
  314. padding: 0px;
  315. align-items: center;
  316. }
  317. .flex-outer-sub li {
  318. display: flex;
  319. flex-wrap: wrap;
  320. align-items: center;
  321. width: 80%;
  322. }
  323. body.light .has-tooltip {
  324. position: relative;
  325. display: inline-block;
  326. border-bottom: 1px dotted black;
  327. }
  328. body.dark .has-tooltip {
  329. position: relative;
  330. display: inline-block;
  331. border-bottom: 1px dotted white;
  332. }
  333. body.light a {
  334. color: #0000FF;
  335. text-decoration: none;
  336. }
  337. body.light a:visited {
  338. color: #0000AA;
  339. }
  340. body.light a:hover {
  341. color: #0000EE;
  342. }
  343. body.dark a {
  344. color: #0000FF;
  345. text-decoration: none;
  346. }
  347. body.dark a:visited {
  348. color: #0000DD;
  349. }
  350. body.dark a:hover {
  351. color: #0000EE;
  352. }
  353. .character-build {
  354. margin: 50px;
  355. width: 90%;
  356. text-align: center;
  357. }
  358. #grow-panel {
  359. width: 100%;
  360. }
  361. th {
  362. font-weight: normal;
  363. }
  364. .growth-option {
  365. display: none;
  366. }
  367. .growth-option+label {
  368. display: none;
  369. }
  370. .growth-label {
  371. font-size: 20pt;
  372. }
  373. input[type="radio"]:checked+
  374. .growth-label {
  375. font-weight: bold;
  376. }
  377. .growth-amount {
  378. width: 50%;
  379. }
  380. ul {
  381. list-style: none;
  382. }
  383. .action-tab {
  384. flex-wrap: wrap;
  385. display: none;
  386. width: 100%;
  387. }
  388. .action-part-button {
  389. border: 1px;
  390. font-size: 30px;
  391. width: 50%;
  392. height: 100px;
  393. display: none;
  394. }
  395. .action-part-button.active {
  396. border: 1px;
  397. font-size: 30px;
  398. width: 50%;
  399. height: 100px;
  400. background: #555;
  401. }
  402. /* SRC: https://stackoverflow.com/questions/29738787/filling-water-animation/29740828 */
  403. .meter {
  404. border-radius: 0%;
  405. width: 10%;
  406. height: 150px;
  407. overflow: hidden;
  408. backface-visibility: hidden;
  409. transform: translate3d(0, 0, 0);
  410. display: inline-block;
  411. }
  412. body.light .meter {
  413. background: #ddd !important;
  414. }
  415. body.dark .meter {
  416. background: #222 !important;
  417. }
  418. .meter .meterLabel {
  419. z-index: 1;
  420. writing-mode: vertical-lr;
  421. text-orientation: upright;
  422. background: none;
  423. transform: rotate(0deg);
  424. font-size: 12px;
  425. text-align: center;
  426. position: absolute;
  427. left: 50%;
  428. top: 50%;
  429. transform: translate(-50%, -50%);
  430. }
  431. body.light .meterLabel {
  432. color: #000;
  433. }
  434. body.dark .meterLabel {
  435. color: #fff;
  436. mix-blend-mode: exclusion;
  437. }
  438. .meter {
  439. display: none
  440. }
  441. .meter .fill {
  442. position: absolute;
  443. top: 0;
  444. left: 0;
  445. background: none;
  446. }
  447. .meter #waveShape {
  448. animation-name: waveAction;
  449. animation-iteration-count: infinite;
  450. animation-timing-function: linear;
  451. animation-duration: 0.5s;
  452. width:300px;
  453. height: 150px;
  454. fill: #04ACFF;
  455. }
  456. .meter#arousalMeter #waveShape {
  457. fill: #FF0000;
  458. }
  459. .meter#orgasmMeter #waveShape {
  460. fill: #FFFFFF;
  461. }
  462. .meter#edgeMeter #waveShape {
  463. fill: #FF6600;
  464. }
  465. .meter#cumMeter #waveShape {
  466. fill: #EEEEEE;
  467. }
  468. .meter#femcumMeter #waveShape {
  469. fill: #999999;
  470. }
  471. .meter#milkMeter #waveShape {
  472. fill: #FFFFFF;
  473. }
  474. .meter#gasMeter #waveShape {
  475. fill: #33FF33;
  476. }
  477. .meter#pissMeter #waveShape {
  478. fill: #FFFF33;
  479. }
  480. .meter#scatMeter #waveShape {
  481. animation-duration: 2s;
  482. fill: #552222;
  483. }
  484. @keyframes fillAction {
  485. 0% {
  486. transform: translate(0, 150px);
  487. }
  488. 100% {
  489. transform: translate(0, -5px);
  490. }
  491. }
  492. @keyframes waveAction {
  493. 0% {
  494. transform: translate(-150px, 0);
  495. }
  496. 100% {
  497. transform: translate(0, 0);
  498. }
  499. }