From 257a5cdf6f44ddafa89b9c6bfe1aa1ed5b98b7f5 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 24 Feb 2018 09:45:17 -0500 Subject: [PATCH] Adjusted the breakpoint for removing the margins on the sides. Disabled the victim table for now. --- game.js | 3 ++- stroll.html | 4 ++-- style.css | 7 ++++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/game.js b/game.js index 96e282c..8c46c95 100644 --- a/game.js +++ b/game.js @@ -918,13 +918,14 @@ function getPrey(region, area) function updateVictims(type,prey) { + /* var sums = prey.sum(); for (var key in sums) { if (sums.hasOwnProperty(key)) { victims[type][key] += sums[key]; } - } + }*/ } function feed() diff --git a/stroll.html b/stroll.html index f4377f5..3ac965f 100644 --- a/stroll.html +++ b/stroll.html @@ -72,7 +72,7 @@
-
Welcome to Stroll 0.4.6
+
Welcome to Stroll 0.5.0
This game features 18+ content
Changelog
It's a nice day for a walk
@@ -128,7 +128,7 @@
-

Welcome to Stroll 0.4.6

+

Welcome to Stroll 0.5.0

This game features 18+ content

Changelog
diff --git a/style.css b/style.css index 32ef302..9c25756 100644 --- a/style.css +++ b/style.css @@ -9,20 +9,20 @@ body { margin: auto; } -@media (max-aspect-ratio: 1/1){ +@media (max-aspect-ratio: 16/9){ .game-area { width: 100% } } -@media (min-aspect-ratio: 1/1){ +@media (min-aspect-ratio: 16/10){ .game-area { width: 75% } } #log-area { - flex: 3; + flex: 5; display:none; } @@ -107,6 +107,7 @@ body { } #victim-table { + display: none; margin: auto; width: 80%; }