[Frontend] Significant markup/CSS mods for splash screen

#164
Markup in index.html and about-dialog.html
changed to simplify and use :before/:after psuedos;
CSS in _logo-and-bg.scss modded for same;
Added _startup.scss to hold general CSS for
the startup screen;
Renamed startup.scss to startup-open.scss;
Modified SplashScreenManager.js to target renamed
outer container .l-splash-holder;
Added media query for startup screen on phone;
Cleanup: moved classes out of _effects into _global;
Still to-do: apply to WARP and VISTA, including needed
mods to their About dialog screens;
This commit is contained in:
Charles Hacskaylo
2016-02-23 18:30:21 -08:00
parent 99cf690ad4
commit 164d959f60
10 changed files with 146 additions and 81 deletions

View File

@ -32,7 +32,8 @@ define([
function SplashScreenManager($document) {
var splash;
$document = $document[0];
splash = $document.querySelectorAll('.s-logo-holder')[0];
splash = $document.querySelectorAll('.l-splash-holder')[0];
console.log(splash);
if (!splash) {
return;
}