diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-06 03:14:10 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-06 03:14:10 -0700 |
commit | c0ba07669d8403f428ec250e3f3da74844c6c587 (patch) | |
tree | 94313747d9abea02b2f3b01c06308225d9db5e4a /system/admin/static | |
parent | 698173a6176762f966be0abd1dc77b85e482a03a (diff) |
adding authentication & token-based persistence for users, init setup for first-use, pulling out some handlers into separate file for readability and navigation
Diffstat (limited to 'system/admin/static')
-rw-r--r-- | system/admin/static/dashboard/css/admin.css | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/system/admin/static/dashboard/css/admin.css b/system/admin/static/dashboard/css/admin.css index cf8a84b..413edd5 100644 --- a/system/admin/static/dashboard/css/admin.css +++ b/system/admin/static/dashboard/css/admin.css @@ -8,16 +8,60 @@ margin: auto; } +.nav-wrapper a:hover { + color: inherit !important; +} + .admin-ui { width: 95%; max-width: 1300px; margin: 1% auto; } +.init { + float: none !important; + margin: auto !important; +} + .manager { margin-bottom: 2%; } +.left-nav .row li a { + padding: 10px 0; + transition: all 0.3s ease; +} + +.left-nav .card-title { + margin-top: 10px !important; +} + +.left-nav .card-title:first-child { + margin-top: 0px !important; +} + +ul.posts li { + display: block; + margin: 0 0 20px 0; + padding: 0 0 20px 0 !important; + border-bottom: solid 1px #e0e0e0; +} + +ul.posts li:last-child { + border-bottom: none; + margin: 0 !important; + padding: 0 !important; +} + +li a { + transition: all 0.3s ease; +} + +li a:hover { + color: #333; + transition: all 0.3s ease; +} + a.new-post { margin: 0.5rem 0 1rem 0.75rem; } |