From c0ba07669d8403f428ec250e3f3da74844c6c587 Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Thu, 6 Oct 2016 03:14:10 -0700 Subject: adding authentication & token-based persistence for users, init setup for first-use, pulling out some handlers into separate file for readability and navigation --- system/admin/static/dashboard/css/admin.css | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) (limited to 'system/admin/static/dashboard') 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; } -- cgit v1.2.3