Made the development environment login page nicer.

- 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.
This commit is contained in:
Jeremy Philemon
2017-03-18 21:48:34 +05:30
committed by Tim Abbott
parent f67e9a7e5e
commit 9e47ec2270

View File

@@ -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 {