From 9e47ec2270925e79fe55dfc64d2c937f68790fdd Mon Sep 17 00:00:00 2001 From: Jeremy Philemon Date: Sat, 18 Mar 2017 21:48:34 +0530 Subject: [PATCH] Made the development environment login page nicer. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - The buttons now have a flat look (dropped the border-radius) with a white background color. - The font colors now match the darker green shade of the navbar. - The border-colors match the lighter green shade of the navbar. - Green is used for all the normal user buttons, while the admin buttons are a nice blue. - I’ve `git grep`d to confirm that changes in .btn-direct only affect the buttons on login.html Fixes part of #4106. --- static/styles/portico.css | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/static/styles/portico.css b/static/styles/portico.css index 493c7d590b..1ce120da1f 100644 --- a/static/styles/portico.css +++ b/static/styles/portico.css @@ -816,19 +816,22 @@ a.bottom-signup-button { margin-bottom: 0px; padding: 8px; font-size: 18px; - border-radius: 5px; + border-radius: 0px; min-width: 300px; - color: #fff; } .btn-user { - background-color: #428bca; - border-color: #357ebd; + background-color: #ffffff; + border-color: #55bdaa; + border-style: solid; + color: #3f9486; } .btn-admin { - background-color: #ff4136; - border-color: #bd7e35; + background-color: #ffffff; + border-color: #00a9f4; + border-style: solid; + color: #2196f3; } .feature-page-header {