Added settings container, updated dependencies.

This commit is contained in:
Daniel Scalzi
2018-05-22 22:34:35 -04:00
parent a67dac23cf
commit e9e2ec162a
6 changed files with 91 additions and 151 deletions

View File

@@ -30,6 +30,7 @@
<div id="main">
<% include welcome.ejs %>
<% include login.ejs %>
<% include settings.ejs %>
<% include landing.ejs %>
</div>
<% include overlay.ejs %>

View File

@@ -824,6 +824,18 @@ p {
}
*/
/*******************************************************************************
* *
* Settings View (sttings.ejs) *
* *
******************************************************************************/
#settingsContainer {
position: relative;
height: 100%;
background: rgba(0, 0, 0, 0.50);
}
/*******************************************************************************
* *
* Landing View (Structural Styles) *

View File

@@ -15,6 +15,7 @@ let fatalStartupError = false
const VIEWS = {
landing: 'landingContainer',
login: 'loginContainer',
settings: 'settingsContainer',
welcome: 'welcomeContainer'
}

3
app/settings.ejs Normal file
View File

@@ -0,0 +1,3 @@
<div id="settingsContainer">
</div>