Make 'Uitschrijven' button red to distinct enrolled events
This commit is contained in:
parent
141e25ee38
commit
8ee80429bf
2 changed files with 10 additions and 1 deletions
|
@ -18,6 +18,6 @@
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>Mijn status: {{ my_registration.state_str }}</p>
|
<p>Mijn status: {{ my_registration.state_str }}</p>
|
||||||
|
|
||||||
<button type="submit">Uitschrijven</button>
|
<button class="cancel" type="submit">Uitschrijven</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -82,6 +82,15 @@ h1 a:hover, h1 a:focus, h1 a:active {
|
||||||
color: #e74c3c;
|
color: #e74c3c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.cancel {
|
||||||
|
background-color: #e74c3c;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:focus.cancel {
|
||||||
|
background-color: #c0392b;
|
||||||
|
}
|
||||||
|
|
||||||
/*change the layout of the navigation bar for all the screens
|
/*change the layout of the navigation bar for all the screens
|
||||||
that have a width less or equal than 500px*/
|
that have a width less or equal than 500px*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue