create separate page for login

This commit is contained in:
Zachary Chai
2017-01-19 19:08:59 -05:00
parent ceeafa3208
commit 3039bd168b
10 changed files with 48 additions and 10 deletions

View File

@ -0,0 +1,10 @@
.login {
.center-panel {
.center-panel-size {
max-width: 600px
}
.center-panel-content-size {
max-width: 500px;
}
}
}

View File

@ -26,7 +26,7 @@ html, body {
background: #ffffff;
}
.app-background {
.background {
height: 350px;
width: 100%;
background: asset-url('greenlight_background');
@ -35,6 +35,10 @@ html, body {
background-repeat: no-repeat;
}
body[data-controller=landing].app-background {
@extend .background;
}
body[data-controller=landing][data-action=rooms].app-background {
background-image: asset-url('bg_personal_room');
}
@ -61,14 +65,14 @@ body[data-controller=landing][data-action=rooms].app-background {
padding: 20px;
}
.center-block {
float: none;
}
.center-panel {
.center-block {
float: none;
}
.center-panel-size {
max-width: 900px
}
.center-panel-conent-size {
.center-panel-content-size {
max-width: 800px;
}