New login screen.

This commit is contained in:
James Brooks
2015-06-13 14:36:02 +01:00
parent 37b89700a6
commit 3c5c8b0096
8 changed files with 110 additions and 65 deletions
@@ -41,7 +41,7 @@ class DashboardController extends AbstractController
public function showNotifications() public function showNotifications()
{ {
return View::make('dashboard.notifications.index')->with([ return View::make('dashboard.notifications.index')->with([
'pageTitle' => trans('dashboard.notifications.notifications').' - '.trans('dashboard.dashboard'), 'pageTitle' => trans('dashboard.notifications.notifications').' '.trans('dashboard.dashboard'),
]); ]);
} }
} }
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"dist/css/all.css": "dist/css/all-df9cc659.css", "dist/css/all.css": "dist/css/all-1e740827.css",
"dist/js/all.js": "dist/js/all-c132bc1e.js" "dist/js/all.js": "dist/js/all-c132bc1e.js"
} }
+2 -1
View File
@@ -5,8 +5,9 @@ $ionicons-font-path: "../../../fonts" !default;
@import "modules/bootstrap"; @import "modules/bootstrap";
html, body { html {
height: 100%; height: 100%;
-webkit-font-smoothing: antialiased;
} }
@import "helpers"; @import "helpers";
+41 -19
View File
@@ -1,23 +1,45 @@
.login { body.login {
padding-top: 90px; background: $cachet-dark-blue;
}
.login .logo { .form-bg {
display: block; padding:20px;
margin: 0 auto 30px; border-radius:10px;
} position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 320px;
height: 280px;
}
.login legend { .logo {
border: 0; margin-bottom: 10px;
padding: 0; }
width: 100%;
font-size: 24px;
font-weight: 500;
text-align: center;
margin: 0 0 30px 0;
}
.login .alert { p {
font-size: $base-font-size; color: white;
letter-spacing: $base-letter-spacing; text-align: center;
font-weight: 600;
font-size: 18px;
}
.btn {
&.btn-white {
background-color: white;
transition: background-color 0.5s ease;
&.btn-trans {
background-color: transparent;
border: 1px solid white;
color: white;
&:hover {
background-color: white;
color: $cachet-dark-blue;
}
}
}
}
} }
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -2,7 +2,7 @@
<html> <html>
@include('partials.dashboard.head') @include('partials.dashboard.head')
<body class="dashboard"> <body class="dashboard @yield('bodyClass')">
<div class="content"> <div class="content">
@yield('content') @yield('content')
</div> </div>