{% extends 'base.html.twig' %}
{% block title %}Auto-diagnostiquer son exploitation{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/accueil.css') }}">
<style>
.accueilDiv {
background-color: rgba(255, 255, 255, 0.9);
}
@media all and (max-width: 1200px){
.accueilDiv {
margin-left: 6rem !important;
margin-right: 6rem !important;
}
}
@media all and (max-width: 990px){
.accueilDiv {
margin-left: 3rem !important;
margin-right: 3rem !important;
}
}
</style>
{% endblock %}
{% block navBar %}Évaluer son exploitation{% endblock %}
{% block body %}
<div class="row">
<div class="col-xl-10 offset-xl-1 col-md-12 offset-md-0">
<a href="{{ path('afficher_questionnaire') }}">
<img src="{{ asset('img/proagri_new.png') }}" alt="Diagnostic" style="width: 100%;">
</a>
</div>
</div>
{% endblock %}