From 078f87321983af8543733ed85405ccbbe469c799 Mon Sep 17 00:00:00 2001 From: Thaum Date: Wed, 7 Jan 2015 11:24:26 +0000 Subject: [PATCH] Added basic global app layout --- rpg-docs/Routes/Routes.js | 3 +- rpg-docs/client/views/GeneralCSS/color.css | 4 ++ .../client/views/character/Stats/stats.html | 2 - .../character/abilityCards/abilityCards.css | 3 +- .../views/character/characterSheet.html | 45 ++++++++++------- rpg-docs/client/views/layout/imports.html | 2 + rpg-docs/client/views/layout/layout.html | 25 ++++++++++ .../client/views/layout/publicHeader.html | 48 +++++++++++++++++++ 8 files changed, 111 insertions(+), 21 deletions(-) create mode 100644 rpg-docs/client/views/layout/layout.html create mode 100644 rpg-docs/client/views/layout/publicHeader.html diff --git a/rpg-docs/Routes/Routes.js b/rpg-docs/Routes/Routes.js index eb94e951..dba32a79 100644 --- a/rpg-docs/Routes/Routes.js +++ b/rpg-docs/Routes/Routes.js @@ -1,5 +1,6 @@ Router.configure({ - loadingTemplate: 'loading' + loadingTemplate: 'loading', + layoutTemplate: 'layout' }); Router.map( function () { diff --git a/rpg-docs/client/views/GeneralCSS/color.css b/rpg-docs/client/views/GeneralCSS/color.css index fcbfde5e..f0ae0e0b 100644 --- a/rpg-docs/client/views/GeneralCSS/color.css +++ b/rpg-docs/client/views/GeneralCSS/color.css @@ -72,4 +72,8 @@ .blue-grey { background-color: #607D8B; +} + +.white { + background-color: #ffffff; } \ No newline at end of file diff --git a/rpg-docs/client/views/character/Stats/stats.html b/rpg-docs/client/views/character/Stats/stats.html index b57633bb..f42854c3 100644 --- a/rpg-docs/client/views/character/Stats/stats.html +++ b/rpg-docs/client/views/character/Stats/stats.html @@ -1,9 +1,7 @@