Altered color scheme of voting areas to make them more obvious

This commit is contained in:
Absurdon 2017-07-25 18:54:58 +02:00
parent fa1237f149
commit 95097485b9
3 changed files with 7 additions and 3 deletions

View File

@ -140,3 +140,7 @@
.skin-blue.layout-top-nav .main-header > .logo:hover { .skin-blue.layout-top-nav .main-header > .logo:hover {
background-color: #3b8ab8; background-color: #3b8ab8;
} }
.skin-blue .gather-voting .list-group-item {
background-color: #F5F89F;
color: #000;
}

View File

@ -6,10 +6,10 @@ var config = {
uri: "mongodb://localhost/swsgather_development" uri: "mongodb://localhost/swsgather_development"
}, },
secret_token: "", secret_token: "",
session_store_name: "_ENSL_session_key_staging", session_store_name: "_ENSL_session_key",
hive_url: "http://hive.naturalselection2.com", hive_url: "http://hive.naturalselection2.com",
hive2_url: "http://hive2.ns2cdt.com", hive2_url: "http://hive2.ns2cdt.com",
ensl_url: "http://staging.ensl.org/", ensl_url: "http://www.ensl.org/",
ensl_rules_url: "http://www.ensl.org/articles/464", ensl_rules_url: "http://www.ensl.org/articles/464",
steam_bot_link: "http://steamcommunity.com/id/nslgathers" steam_bot_link: "http://steamcommunity.com/id/nslgathers"
}; };

View File

@ -20,7 +20,7 @@ require(path.join(__dirname, "db/index"));
//} //}
//Initialise Discord Bot //Initialise Discord Bot
if (env === "production") { if (env !== "test") {
require(path.join(__dirname, "lib/discord/bot"))(config.discordBot); require(path.join(__dirname, "lib/discord/bot"))(config.discordBot);
} }