diff --git a/app/static/css/global.css b/app/static/css/global.css index 4511894..0eb9c7e 100644 --- a/app/static/css/global.css +++ b/app/static/css/global.css @@ -37,7 +37,7 @@ body { a { text-decoration: none; - color: #b41414; + color: #c61a1a; } a:focus { outline: none; @@ -70,8 +70,8 @@ textarea { .button, input[type="button"], input[type="submit"] { - padding: 6px 10px; - border: 1px solid transparent; border-radius: 3px; + padding: 6px 10px; border-radius: 2px; + cursor: pointer; font-family: 'DejaVu Sans', sans-serif; font-weight: 400; } @@ -112,6 +112,16 @@ input[type="checkbox"] { background-color: #aa3421; } +.bg-orange { + background: #e99820; + color: #ffffff; +} +.bg-orange:hover, +.bg-orange:focus, +.bg-orange:active { + background: #d88c1b; +} + .bg-white, .bg-white { border: 1px solid #e5e5e5; diff --git a/app/static/css/table.css b/app/static/css/table.css index 3bd7d65..2163080 100644 --- a/app/static/css/table.css +++ b/app/static/css/table.css @@ -5,8 +5,8 @@ table { border-width: 0 0 1px 0; } table th { - background: #ecb0b0; - border-color: #dc9898; + background: #e0e0e0; + border-color: #d0d0d0; border-style: solid; border-width: 1px 0; padding: 2px; diff --git a/app/templates/admin/index.html b/app/templates/admin/index.html index 16219f4..180266b 100644 --- a/app/templates/admin/index.html +++ b/app/templates/admin/index.html @@ -45,7 +45,7 @@ Panneau d'administration ยป

Utilisateurs et groupes

{{ form.hidden_tag() }} - {{ form.submit(style="background: #da9b1d;border: 1px solid rgba(0,0,0,.1);border-radius: 2px;color: white;") }} + {{ form.submit(class="bg-orange") }}
{% endblock %}