{% extends "template.html.twig" %}
{% if title is not defined %}{% set title = "Espace recrutement" %}{% endif %}
{% block body %}
<div class='bg-white w100 {{desktop("gpadding vt-40-in")}} {{mobile("hz-15-in vt-30-in")}} '>
<div class='w100 {{desktop("top-20")}}'>
{% block job_content %}{% endblock %}
</div>
</div>
{% endblock %}
{% block css %}
<style>
table.record{margin: 10px 0; border-spacing: 0px 1px}
.record-box{border-radius: 5px; padding: 20px 20px 0px 20px;}
.record-box:not(.noshadow){box-shadow: 0 3px 1px -2px rgba(0,0,0,.14), 0 2px 2px 0 rgba(0,0,0,.098), 0 1px 5px 0 rgba(0,0,0,.084)}
.record tr:not(:last-child) > *{border-bottom: 1px solid #ccc;}
.record tr > *{padding: 15px;}
.record th{
width: 300px;
text-align: left;
}
.record td{font-weight: 300;}
td .h4{
color: #4B4B4B;
font-size: var(--h5-size);
font-weight: 500!important;
}
table tr:hover {background: rgba(244,244,244,.85);}
</style>
{% endblock %}