From c5feca28506054845a3ced772b538c14730d6654 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 27 Feb 2018 07:58:59 -0500 Subject: [PATCH 1/3] Corrected some stats appearing when they should not --- stroll.html | 12 ++++++------ style.css | 6 ++++++ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/stroll.html b/stroll.html index be8a47c..a48d651 100644 --- a/stroll.html +++ b/stroll.html @@ -19,12 +19,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
Growth
diff --git a/style.css b/style.css index 7b01083..50f549f 100644 --- a/style.css +++ b/style.css @@ -79,6 +79,12 @@ body.dark #log { font-size: 12pt; } +.stat-line-hidden { + font-weight: normal; + font-size: 12pt; + display: none; +} + .sidebar { display: none; flex-wrap: wrap; From e6629d7eda9706e5409fc412acbf4f96147d8865 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 27 Feb 2018 11:35:50 -0500 Subject: [PATCH 2/3] Updated the look of the character creation screen --- game.js | 30 ++++---- stroll.html | 214 ++++++++++++++++++++++++++++------------------------ style.css | 72 ++++++++++++++++++ 3 files changed, 204 insertions(+), 112 deletions(-) diff --git a/game.js b/game.js index 906e5bb..7f526ce 100644 --- a/game.js +++ b/game.js @@ -843,7 +843,7 @@ function toggle_verbose() { verbose = !verbose; - document.getElementById("button-verbose").innerHTML = (verbose ? "Verbose" : "Simple"); + document.getElementById("button-verbose").innerHTML = (verbose ? "Verbose Text" : "Simple Text"); } function toggle_arousal() @@ -2345,24 +2345,27 @@ function grow_lots() update(["Power surges through you as you grow " + heightStr + " taller and gain " + massStr + " of mass",newline]); } +function resetSettings() { + document.forms.namedItem("custom-species-form").reset(); +} + function saveSettings() { let storage = window.localStorage; let settings = {}; let form = document.forms.namedItem("custom-species-form"); for (let i=0; i
-
- +
+ - +
-
Welcome to Stroll 0.5.6
+
Welcome to Stroll 0.5.7
This game features 18+ content
Changelog
Telegram discussion group
@@ -132,10 +132,11 @@
- + +
-

Welcome to Stroll 0.5.6

+

Welcome to Stroll 0.5.7

This game features 18+ content

Changelog

Telegram discussion group

@@ -145,88 +146,96 @@

Build your Character (leave blank for defaults)

    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
    -
  • - -
    -
  • -
  • - -
    -
  • -
  • - -
    -
  • -
  • - -
    -
  • -
  • - -
    -
  • -
    -
  • - - -
  • -
    - Brutality:
    -
      +
      +
      Basics
      +
    • + + +
    • +
    • + + +
    • +
    • + + +
    • - - + +
    • - - + +
    • +
    • - - + +
    • - - + +
    • -
    +
  • + +
    +
  • +
  • + +
    +
  • +
  • + +
    +
  • +
    +
  • + + +
  • +

-
  • - -
    -
  • -
  • - -
    -
  • -
  • - -
    -
  • -
    - Arousal:
    -
    +
    +
    Brutality
    +
      +
    • + + +
    • +
    • + + +
    • +
    • + + +
    • +
    • + + +
    • +
    +
    +
    +
    +
    Misc
    +
  • + +
    +
  • +
  • + +
    +
  • +
  • + +
    +
  • +
    +
    + +
  • @@ -239,9 +248,9 @@

  • -
    - Tail(s):
    -
    +
    + +
  • @@ -266,14 +275,18 @@

  • -
  • - -
    -
  • -
    -
    - Male genitals:
    -
    +
    + + +
    +
  • + It's on :D +
  • +
    +
    +
    + +
  • @@ -306,9 +319,9 @@

  • -
    - Breasts:
    -
    +
    + +
  • @@ -337,9 +350,9 @@

  • -
    - Female genitals:
    -
    +
    + +
  • @@ -361,9 +374,12 @@
  • - - - +
    + + + + +
    diff --git a/style.css b/style.css index 50f549f..d7735dd 100644 --- a/style.css +++ b/style.css @@ -17,6 +17,11 @@ body.dark > div > div > div > form input { background: #444; } +body.light button { + color: #000; + background: #ddd; +} + body.dark button { color: #eee; background: #111; @@ -108,6 +113,12 @@ body.dark #log { flex: 1; } +.stat-container { + flex-wrap: wrap; + flex-direction: row; + flex: 1 +} + .action-part-container { max-height: 400px; display: flex; @@ -128,6 +139,7 @@ body.dark #log { font-size: 20px; width: 120px; height: 75px; + } .option-form { @@ -179,6 +191,62 @@ input.sub[type="checkbox"]:checked ~ .reveal-if-active-2 { overflow: visible; } +.flex-outer { + width: 100%; + display: flex; + flex-direction: row; + flex-wrap: wrap; + text-align: center; + justify-content: center; +} + +.custom-category { + text-align: center; + margin: 10px; + width: 25%; +} + +body.light .custom-category { + background: #ddd; +} + +body.dark .custom-category { + background: #222; +} + + +.custom-header { + font-size: 200%; + margin: 10px; + display: inline-block; + border-style: solid; + border-width: 1px; +} + +body.light .custom-header { + background: #ddd; +} + +body.dark .custom-header { + background: #555; +} + +body.light input[type="checkbox"]:checked+ +.custom-header { + margin: 10px; + background: #bbb; +} + +body.dark input[type="checkbox"]:checked+ +.custom-header { + margin: 10px; + background: #000; +} + +.custom-header-checkbox { + display: none; +} + .flex-outer li, .flex-inner { display: flex; @@ -238,6 +306,10 @@ body.dark a:hover { color: #0000EE; } +.character-build { + width: 100%; + text-align: center; +} #grow-panel { width: 100%; } From 8e6a36fb2dffffdf6103f544641ae6d285c36d8a Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 27 Feb 2018 11:39:47 -0500 Subject: [PATCH 3/3] Oops layout was broken --- style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/style.css b/style.css index d7735dd..d3d456f 100644 --- a/style.css +++ b/style.css @@ -203,7 +203,6 @@ input.sub[type="checkbox"]:checked ~ .reveal-if-active-2 { .custom-category { text-align: center; margin: 10px; - width: 25%; } body.light .custom-category { @@ -307,7 +306,7 @@ body.dark a:hover { } .character-build { - width: 100%; + width: 90%; text-align: center; } #grow-panel {