Fix button configurations on index page

This commit is contained in:
Sauer 2019-04-15 14:15:51 +02:00
parent 6aaa4c6c50
commit 072b14e7b5
2 changed files with 8 additions and 5 deletions

View File

@ -69,16 +69,19 @@ img {
/* BUTTONS */
.btn-group {
position: relative;
left: 25%;
text-align: center;
}
.btn-group button {
.btn-group a {
background-color: #2E296C;
color: white;
padding: 10px 24px;
cursor: pointer;
width: 50%;
display: block;
margin: 3px;
margin-left: auto;
margin-right: auto;
}
/* Add a background color on hover */

View File

@ -29,8 +29,8 @@
<p>Sprich einen von uns Fachschaftsmenschen an oder schreib uns eine Mail unter fachschaft-wiai.stuve@uni-bamberg.de. Wir freuen darauf, von dir zu hören!</p>
</div>
<div class="btn-group">
<a href="{{ url_for('questions') }}"><button>Jetzt mitspielen</button></a>
<a href="{{ url_for('access_answers') }}"><button>Hier geht's zu deinen Antworten</button></a>
<a href="{{ url_for('submit_solution') }}"><button>Lösung einreichen</button></a>
<a href="{{ url_for('questions') }}">Jetzt mitspielen</a>
<a href="{{ url_for('access_answers') }}">Hier geht's zu deinen Antworten</a>
<a href="{{ url_for('submit_solution') }}">Lösung einreichen</a>
</div>
{% endblock %}