From 2d40afb740fa9874210481a356559b75a0502996 Mon Sep 17 00:00:00 2001 From: Daniel Xie Date: Tue, 28 Feb 2017 11:47:43 -0600 Subject: [PATCH] Fixed formatting issue --- css/menupages.css | 32 ++++++++++++++++++++++---------- index.html | 4 +++- src/Faction.js | 1 + 3 files changed, 26 insertions(+), 11 deletions(-) diff --git a/css/menupages.css b/css/menupages.css index db3e57e84..dc05c5c8a 100644 --- a/css/menupages.css +++ b/css/menupages.css @@ -141,22 +141,34 @@ display:inline-block; } -/* World */ -#world-container li { - margin: 0 0 15px 0; - list-style-type: none; -} - -/* Augmentations */ - -#augmentations-container { - color: #66ff33; +/* Faction Augmentations */ +#faction-augmentations-container{ position: fixed; padding-top: 10px; padding-left: 10px; height: 100%; margin-left: 10%; width: 99%; + color: #66ff33; +} + +/* World */ +#world-container li { + margin: 0 0 15px 0; + list-style-type: none; +} + + + +/* Augmentations */ +#augmentations-container { + position: fixed; + padding-top: 10px; + padding-left: 10px; + height: 100%; + margin-left: 10%; + width: 99%; + color: #66ff33; } .installed-augmentation { diff --git a/index.html b/index.html index c63cc3a7a..58eafe9b0 100644 --- a/index.html +++ b/index.html @@ -368,7 +368,7 @@

Faction Augmentations

-

Lists all augmentations that are available from

+

Lists all augmentations that are available to purchase from

Back @@ -376,6 +376,8 @@
+

Augmentations

+

Lists all augmentations you have installed

diff --git a/src/Faction.js b/src/Faction.js index 70093a14e..d476b9bec 100644 --- a/src/Faction.js +++ b/src/Faction.js @@ -611,6 +611,7 @@ displayFactionContent = function(factionName) { } displayFactionAugmentations = function(factionName) { + document.getElementById("faction-augmentations-page-desc").innerHTML = "Lists all augmentations that are available to purchase from" + factionName; var faction = Factions[factionName]; var augmentationsList = document.getElementById("faction-augmentations-list");