center in the middle of the page the error text
continuous-integration/drone/push Build is passing Details

pull/10/head
Vivien DUFOUR 2 years ago
parent 9f902c431a
commit b87aed643d

@ -6,10 +6,40 @@
{% block stylesheets %}
<style>
h1 { color: #da6110; text-align: center;}
h2 { text-align: center;}
.button { display: block; margin: 0 auto; cursor : pointer; background-color: white; color : black; text-align: center; font-size: 20px; border-radius: 12px; border : 2px solid #da6110}
.button:hover {background-color: #da6110}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
h1 {
color: #da6110;
text-align: center;
margin-bottom: 15px}
h2 {
text-align: center;
margin-bottom: 15px;
margin-top: 15px}
.button {
display: block;
cursor : pointer;
background-color: white;
color : black;
text-align: center;
font-size: 20px;
border-radius: 12px;
border : 2px solid #da6110;
margin-top: 15px;
}
.button:hover {
background-color: #da6110
}
</style>
{% endblock %}

Loading…
Cancel
Save