diff options
| -rw-r--r-- | ihatemoney/static/css/main.css | 14 | ||||
| -rw-r--r-- | ihatemoney/templates/home.html | 4 |
2 files changed, 3 insertions, 15 deletions
diff --git a/ihatemoney/static/css/main.css b/ihatemoney/static/css/main.css index 6c8b57f..3c905a0 100644 --- a/ihatemoney/static/css/main.css +++ b/ihatemoney/static/css/main.css @@ -17,7 +17,6 @@ body { margin: 0; padding: 0; } -.navbar .primary-nav { padding-left: 75px; } .navbar .secondary-nav { text-align: right; flex-direction: row-reverse; @@ -138,12 +137,6 @@ footer{ color: #fff; } -.password-reminder{ - float: right; - margin-right: 20px; - margin-top: 5px; -} - .confirm, .confirm:hover { color: red; } @@ -171,11 +164,6 @@ footer{ background: url('../images/edit.png') no-repeat right; } -project-actions { - padding-top: 10px; - text-align: center; -} - .project-actions > .delete, .project-actions > .edit { font-size: 0px; display: block; @@ -207,7 +195,7 @@ tr.ower_line { background-color: #CBEF68; } -tr.payer_line .balance-name{ +tr.payer_line .balance-name { color:green; text-indent:5px; } diff --git a/ihatemoney/templates/home.html b/ihatemoney/templates/home.html index a628ecc..512f780 100644 --- a/ihatemoney/templates/home.html +++ b/ihatemoney/templates/home.html @@ -22,8 +22,8 @@ {{ forms.authenticate(auth_form, home=True) }} </fieldset> <div class="controls"> - <button class="btn" type="submit">{{ _("log in") }}</button> - <a class="password-reminder" href="{{ url_for(".remind_password") }}">{{ _("can't remember your password?") }}</a> + <button class="btn btn-primary" type="submit">{{ _("log in") }}</button> + <a class="password-reminder btn btn-link" href="{{ url_for(".remind_password") }}">{{ _("can't remember your password?") }}</a> </div> </form> </div> |
