29/03/ 14h
parent
3be3c2db4b
commit
cf2df418b5
|
@ -3967,7 +3967,7 @@ const AddClassManual = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
|
||||
>
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily: "DM Sans" }} id="draggable-dialog-title"> </DialogTitle>
|
||||
|
||||
<DialogContent className="DialogContent_width DialogContent_width_session_800px" >
|
||||
|
||||
|
@ -4023,7 +4023,7 @@ const AddClassManual = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily: "DM Sans" }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "30rem" }}>
|
||||
<DialogContentText>
|
||||
{Dialog_1_message}
|
||||
|
@ -4222,7 +4222,7 @@ const AddClassManual = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily: "DM Sans" }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "20rem" }}>
|
||||
<DialogContentText>
|
||||
{Dialog_1_message}
|
||||
|
@ -4925,10 +4925,10 @@ const AddClassManual = (props) => {
|
|||
{submenu && String(submenu) === "detail_formation" &&
|
||||
<div>
|
||||
|
||||
|
||||
|
||||
<div class="separator">
|
||||
<nav className="separator_label">
|
||||
Infos Générales </nav>
|
||||
<nav className="separator_label">
|
||||
Infos Générales </nav>
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -5382,10 +5382,88 @@ const AddClassManual = (props) => {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
{/* -- début champs durée & prix **/}
|
||||
|
||||
<div class="separator">
|
||||
<nav className="separator_label">
|
||||
Divers </nav>
|
||||
<nav className="separator_label">
|
||||
Durée & Prix </nav>
|
||||
|
||||
</div>
|
||||
|
||||
<div style={{ width: '100%', float: 'left', }}>
|
||||
<div style={{ display: 'flex', flexDirection: 'row', justifyContent: 'flex-start', width: '100%', paddingLeft: '10px', flexWrap: 'wrap' }}>
|
||||
|
||||
|
||||
<div className="training_caract">
|
||||
|
||||
<TextField
|
||||
name="duree"
|
||||
label="Durée"
|
||||
type="number"
|
||||
InputLabelProps={{
|
||||
shrink: true,
|
||||
}}
|
||||
disabled={false}
|
||||
className="disabled_style"
|
||||
value={p_detail_duree}
|
||||
onChange={(e) => {
|
||||
setp_detail_duree(e.target.value);
|
||||
}
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="training_caract">
|
||||
<Autocomplete
|
||||
disablePortal
|
||||
name="duration_unit"
|
||||
id="duration_unit"
|
||||
className="disabled_style"
|
||||
options={New_duration_unit_list}
|
||||
value={mytrainingdurationunit}
|
||||
onChange={(event, value) => {
|
||||
if (value && value.value) {
|
||||
setmytrainingdurationunit(value.value);
|
||||
setdatamodification("1");
|
||||
} else {
|
||||
setmytrainingdurationunit("");
|
||||
setdatamodification("1");
|
||||
}
|
||||
}}
|
||||
|
||||
renderInput={(params) => <TextField {...params} label="Unité de durée" />
|
||||
}
|
||||
/>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div className="training_caract">
|
||||
<TextField
|
||||
name="price"
|
||||
label="Prix"
|
||||
type="number"
|
||||
InputLabelProps={{
|
||||
shrink: true,
|
||||
}}
|
||||
disabled={false}
|
||||
className="disabled_style"
|
||||
value={p_detail_price}
|
||||
onChange={(e) => {
|
||||
setp_detail_price(e.target.value);
|
||||
}
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="separator">
|
||||
<nav className="separator_label">
|
||||
Divers </nav>
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -5561,89 +5639,15 @@ const AddClassManual = (props) => {
|
|||
</div>
|
||||
|
||||
|
||||
{/* -- début champs durée & prix **/}
|
||||
|
||||
<div class="separator">
|
||||
<nav className="separator_label">
|
||||
Durée & Prix </nav>
|
||||
|
||||
</div>
|
||||
|
||||
<div style={{ width: '100%', float: 'left', }}>
|
||||
<div style={{ display: 'flex', flexDirection: 'row', justifyContent: 'flex-start', width: '100%', paddingLeft: '10px', flexWrap: 'wrap' }}>
|
||||
|
||||
|
||||
<div className="training_caract">
|
||||
|
||||
<TextField
|
||||
name="duree"
|
||||
label="Durée"
|
||||
type="number"
|
||||
InputLabelProps={{
|
||||
shrink: true,
|
||||
}}
|
||||
disabled={false}
|
||||
className="disabled_style"
|
||||
value={p_detail_duree}
|
||||
onChange={(e) => {
|
||||
setp_detail_duree(e.target.value);
|
||||
}
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="training_caract">
|
||||
<Autocomplete
|
||||
disablePortal
|
||||
name="duration_unit"
|
||||
id="duration_unit"
|
||||
className="disabled_style"
|
||||
options={New_duration_unit_list}
|
||||
value={mytrainingdurationunit}
|
||||
onChange={(event, value) => {
|
||||
if (value && value.value) {
|
||||
setmytrainingdurationunit(value.value);
|
||||
setdatamodification("1");
|
||||
} else {
|
||||
setmytrainingdurationunit("");
|
||||
setdatamodification("1");
|
||||
}
|
||||
}}
|
||||
|
||||
renderInput={(params) => <TextField {...params} label="Unité de durée" />
|
||||
}
|
||||
/>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div className="training_caract">
|
||||
<TextField
|
||||
name="price"
|
||||
label="Prix"
|
||||
type="number"
|
||||
InputLabelProps={{
|
||||
shrink: true,
|
||||
}}
|
||||
disabled={false}
|
||||
className="disabled_style"
|
||||
value={p_detail_price}
|
||||
onChange={(e) => {
|
||||
setp_detail_price(e.target.value);
|
||||
}
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* -- début champs specifiques **/}
|
||||
|
||||
<div class="separator">
|
||||
<nav className="separator_label">
|
||||
Champs spécifiques </nav>
|
||||
</div>
|
||||
{rows_champs_specifics &&
|
||||
rows_champs_specifics.length > 0 &&
|
||||
<div class="separator">
|
||||
<nav className="separator_label">
|
||||
Champs spécifiques </nav>
|
||||
</div>}
|
||||
|
||||
<div style={{ width: '100%', float: 'left', }}>
|
||||
|
||||
|
|
|
@ -3301,7 +3301,7 @@ const AddParnerClient = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
|
||||
>
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> Gestion compte intranet </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title"> Gestion compte intranet </DialogTitle>
|
||||
|
||||
<DialogContent className="DialogContent_width" >
|
||||
|
||||
|
|
|
@ -5096,7 +5096,7 @@ const Apprenant = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogContent>
|
||||
<DialogContentText>
|
||||
{Dialog_Suivi_Pedago_message}
|
||||
|
@ -5213,7 +5213,7 @@ const Apprenant = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title" >Apprenant</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title" >Apprenant</DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
<div>
|
||||
|
||||
|
@ -5372,7 +5372,7 @@ const Apprenant = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Tuteur {quel_tuteur}</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Tuteur {quel_tuteur}</DialogTitle>
|
||||
{String(quel_tuteur) === "1" && <DialogContent className="DialogContent_width">
|
||||
<DialogContentText>
|
||||
{Dialog_tuteur_1_message}
|
||||
|
@ -5806,7 +5806,7 @@ const Apprenant = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title" > Inscrire </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title" > Inscrire </DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
|
||||
{New_Getall_TrainingSession_result && <div className="session_caract_Dialog"> <b> Session</b>
|
||||
|
@ -5969,7 +5969,7 @@ const Apprenant = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "20rem" }}>
|
||||
|
||||
|
||||
|
|
|
@ -723,7 +723,7 @@ const Article = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Votre article </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Votre article </DialogTitle>
|
||||
<DialogContent className="DialogContent_width DialogContent_width_session_800px" >
|
||||
|
||||
|
||||
|
|
|
@ -1177,7 +1177,7 @@ const Config_Champs_Personnalise = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogContent>
|
||||
<DialogContentText>
|
||||
{Dialog_1_message}
|
||||
|
|
|
@ -2298,7 +2298,7 @@ const Config_Documents = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
|
||||
<div className="session_caract_Dialog" > Type Document
|
||||
|
|
|
@ -1709,7 +1709,7 @@ const CRM_Opportunite = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "30rem" }}>
|
||||
<DialogContentText>
|
||||
{Dialog_1_message}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -6870,7 +6870,7 @@ const DisplayPartnerStagiaires = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title"> </DialogTitle>
|
||||
<DialogContent >
|
||||
<DialogContentText>
|
||||
|
||||
|
@ -6934,7 +6934,7 @@ const DisplayPartnerStagiaires = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Info Stagiaire</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Info Stagiaire</DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
|
||||
<div className="div_row_dialog">
|
||||
|
@ -7154,7 +7154,7 @@ const DisplayPartnerStagiaires = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Tuteur {quel_tuteur}</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Tuteur {quel_tuteur}</DialogTitle>
|
||||
{String(quel_tuteur) === "1" && <DialogContent className="DialogContent_width">
|
||||
<DialogContentText>
|
||||
{Dialog_tuteur_1_message}
|
||||
|
@ -7593,7 +7593,7 @@ const DisplayPartnerStagiaires = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "30rem" }}>
|
||||
|
||||
|
||||
|
|
|
@ -2546,7 +2546,7 @@ const DistplayPartnerTraningsPage = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle>Info Formation</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily: "DM Sans" }} id="draggable-dialog-title">Info Formation</DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
|
||||
<div className="div_row_dialog">
|
||||
|
|
|
@ -544,7 +544,7 @@ function Emarge_QR_Code() {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Signature Manuscrite </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Signature Manuscrite </DialogTitle>
|
||||
|
||||
<DialogContent className="DialogContent_width" >
|
||||
<div style={{ width: "100%" }}>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -6494,7 +6494,7 @@ function ExportMenuItem(props) {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Info Stagiaire</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Info Stagiaire</DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
|
||||
<div className="div_row_dialog">
|
||||
|
@ -6715,7 +6715,7 @@ function ExportMenuItem(props) {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Tuteur {quel_tuteur}</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Tuteur {quel_tuteur}</DialogTitle>
|
||||
{String(quel_tuteur) === "1" && <DialogContent className="DialogContent_width">
|
||||
<DialogContentText>
|
||||
{Dialog_tuteur_1_message}
|
||||
|
|
|
@ -1623,7 +1623,7 @@ const Module_Editique = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "5rem" }}>
|
||||
<DialogContentText>
|
||||
|
||||
|
@ -1841,7 +1841,7 @@ const Module_Editique = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "5rem" }}>
|
||||
<DialogContentText>
|
||||
|
||||
|
@ -1912,7 +1912,7 @@ const Module_Editique = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "5rem" }}>
|
||||
<DialogContentText>
|
||||
|
||||
|
@ -1982,7 +1982,7 @@ const Module_Editique = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "10rem" }}>
|
||||
<DialogContentText>
|
||||
<div style={{ "textAlign": "left" }}>
|
||||
|
@ -2053,7 +2053,7 @@ const Module_Editique = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "10rem" }}>
|
||||
<DialogContentText>
|
||||
<div style={{ "textAlign": "left" }}>
|
||||
|
@ -2123,7 +2123,7 @@ const Module_Editique = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "10rem" }}>
|
||||
<DialogContentText>
|
||||
<div style={{ "textAlign": "left" }}>
|
||||
|
@ -2526,7 +2526,7 @@ const Module_Editique = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title"> </DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "30rem" }}>
|
||||
<DialogContentText>
|
||||
{Dialog_1_message}
|
||||
|
|
|
@ -632,7 +632,7 @@ const Module_Evaluation_Positionnement = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
<DialogContentText>
|
||||
{Dialog_1_message}
|
||||
|
@ -718,7 +718,7 @@ const Module_Evaluation_Positionnement = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "30rem" }}>
|
||||
<DialogContentText>
|
||||
{Dialog_1_message}
|
||||
|
|
|
@ -1518,7 +1518,7 @@ const PartnerClientActivite = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "30rem" }}>
|
||||
<DialogContentText>
|
||||
|
||||
|
|
|
@ -768,7 +768,7 @@ const Partner_Client = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">client</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">client</DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
|
||||
<div className="div_row_dialog">
|
||||
|
|
|
@ -1467,7 +1467,7 @@ const Partner_Config_Formulaires = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "25rem" }}>
|
||||
|
||||
<DialogContentText>
|
||||
|
|
|
@ -2910,7 +2910,7 @@ const Partner_Configuration_Technique = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent>
|
||||
<DialogContentText>
|
||||
{Dialog_1_message}
|
||||
|
@ -2962,7 +2962,7 @@ const Partner_Configuration_Technique = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Type de client </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Type de client </DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
<DialogContentText>
|
||||
{Dialog_type_client_1_message}
|
||||
|
@ -3069,7 +3069,7 @@ const Partner_Configuration_Technique = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Sites de formation </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Sites de formation </DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
<DialogContentText>
|
||||
{Dialog_site_ftion_1_message}
|
||||
|
@ -3351,7 +3351,7 @@ const Partner_Configuration_Technique = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> Condition de Paiement </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title"> Condition de Paiement </DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
|
||||
<div className="session_caract_Dialog" > code
|
||||
|
@ -3500,7 +3500,7 @@ const Partner_Configuration_Technique = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> CRM étape opportunité </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title"> CRM étape opportunité </DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
|
||||
<div className="session_caract_Dialog" > code
|
||||
|
|
|
@ -2843,7 +2843,7 @@ const Partner_Facture = (props) => {
|
|||
className="partner_commande"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> Détail ligne Facture <font style={{ fontWeight: "700" }}> {String(invoice_internal_ref)} </font> </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title"> Détail ligne Facture <font style={{ fontWeight: "700" }}> {String(invoice_internal_ref)} </font> </DialogTitle>
|
||||
<DialogContent>
|
||||
|
||||
|
||||
|
@ -3077,7 +3077,7 @@ const Partner_Facture = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "20rem" }}>
|
||||
|
||||
<div>
|
||||
|
@ -3156,7 +3156,7 @@ const Partner_Facture = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "20rem" }}>
|
||||
<DialogContentText>
|
||||
Envoi Facture par email
|
||||
|
@ -3300,7 +3300,7 @@ const Partner_Facture = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> Paiement </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title"> Paiement </DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
<DialogContentText>
|
||||
{Dialog_Paiement_1_message}
|
||||
|
@ -3469,7 +3469,7 @@ const Partner_Facture = (props) => {
|
|||
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> Annotation </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title"> Annotation </DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "15rem" }}>
|
||||
<DialogContentText>
|
||||
{Dialog_annotation_1_message}
|
||||
|
|
|
@ -1201,7 +1201,7 @@ const RechercheArticles_new_v2 = (props) => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title">Votre article </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Votre article </DialogTitle>
|
||||
<DialogContent className="DialogContent_width DialogContent_width_session_800px" >
|
||||
|
||||
|
||||
|
|
|
@ -855,7 +855,7 @@ function UpdateAttendeeList() {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
|
||||
>
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title"> Apprenant </DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title"> Apprenant </DialogTitle>
|
||||
<DialogContent className="DialogContent_width" style={{ "minHeight": "20rem" }}>
|
||||
<DialogContentText>
|
||||
{Dialog_1_message}
|
||||
|
|
|
@ -211,7 +211,7 @@ const Header = () => {
|
|||
aria-labelledby="draggable-dialog-title"
|
||||
>
|
||||
|
||||
<DialogTitle style={{ cursor: 'move' }} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title" >MySy Information</DialogTitle>
|
||||
<DialogContent className="DialogContent_width">
|
||||
<DialogContentText>
|
||||
Confirmez la deconnexion <br />
|
||||
|
|
|
@ -97,7 +97,7 @@
|
|||
.texte_area {
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -110,7 +110,7 @@
|
|||
.texte_area_adress {
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -121,7 +121,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -313,7 +313,7 @@
|
|||
.texte_area {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -326,7 +326,7 @@
|
|||
.texte_area_adress {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -337,7 +337,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -536,7 +536,7 @@
|
|||
.texte_area {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -549,7 +549,7 @@
|
|||
.texte_area_adress {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -560,7 +560,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -760,7 +760,7 @@
|
|||
.texte_area {
|
||||
width: 47% !important;
|
||||
font-size: small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -773,7 +773,7 @@
|
|||
.texte_area_adress {
|
||||
width: 96.5% !important;
|
||||
font-size: small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -784,7 +784,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -69,12 +69,12 @@
|
|||
text-align: center;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
@ -98,7 +98,7 @@
|
|||
}
|
||||
|
||||
.sousmenu_btn {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
margin-bottom: 0rem;
|
||||
color: #c0c0c0;
|
||||
|
@ -107,7 +107,7 @@
|
|||
}
|
||||
|
||||
.sousmenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: left;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -160,7 +160,7 @@
|
|||
text-align: center;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -406,7 +406,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
@ -414,7 +414,7 @@
|
|||
}
|
||||
|
||||
.account_img {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 1.5rem;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -422,7 +422,7 @@
|
|||
}
|
||||
|
||||
.sousmenu_btn {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
color: #c0c0c0;
|
||||
|
@ -431,7 +431,7 @@
|
|||
}
|
||||
|
||||
.sousmenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.75rem;
|
||||
text-align: left;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -755,7 +755,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -763,7 +763,7 @@
|
|||
}
|
||||
|
||||
.account_img {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 1.5rem;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -771,7 +771,7 @@
|
|||
}
|
||||
|
||||
.sousmenu_btn {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
color: #c0c0c0;
|
||||
|
@ -780,7 +780,7 @@
|
|||
}
|
||||
|
||||
.sousmenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
text-align: left;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1108,7 +1108,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small !important;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -1116,14 +1116,14 @@
|
|||
}
|
||||
|
||||
.account_img {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
margin-left: 20%;
|
||||
}
|
||||
|
||||
.sousmenu_btn {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
color: #c0c0c0;
|
||||
|
@ -1132,7 +1132,7 @@
|
|||
}
|
||||
|
||||
.sousmenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.75rem;
|
||||
text-align: left;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1407,7 +1407,7 @@
|
|||
|
||||
// end media
|
||||
.sousmenu_selected {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: white;
|
||||
font-weight: 700;
|
||||
font-size: small;
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
width: 80%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -215,7 +215,7 @@
|
|||
width: 60%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
|
@ -395,7 +395,7 @@
|
|||
width: 69%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large;
|
||||
}
|
||||
|
||||
|
@ -575,7 +575,7 @@
|
|||
width: 69%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: x-large;
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
@ -252,7 +252,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
@ -472,7 +472,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -689,7 +689,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium !important;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
|
|
@ -407,6 +407,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -895,6 +896,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1383,6 +1385,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1990,6 +1993,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -164,7 +164,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -224,7 +224,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -347,7 +347,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -405,7 +405,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -528,7 +528,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -586,7 +586,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -711,7 +711,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
width: 100%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -104,7 +104,7 @@
|
|||
width: 69%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
|
@ -165,7 +165,7 @@
|
|||
width: 69%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large;
|
||||
}
|
||||
|
||||
|
@ -218,7 +218,7 @@
|
|||
width: 30%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large;
|
||||
}
|
||||
.div_row_droite {
|
||||
|
@ -228,7 +228,7 @@
|
|||
width: 69%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large;
|
||||
}
|
||||
|
||||
|
|
|
@ -68,8 +68,8 @@
|
|||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
font-family: DM sans;
|
||||
float: left;
|
||||
//border: 1px solid black;
|
||||
|
@ -109,7 +109,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -150,7 +150,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -180,7 +180,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -237,6 +237,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -366,7 +367,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -448,7 +449,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -458,7 +459,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -467,7 +468,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -495,8 +496,8 @@
|
|||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
font-family: DM sans;
|
||||
float: left;
|
||||
border-width: 0.01rem;
|
||||
|
@ -736,7 +737,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -777,7 +778,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -806,7 +807,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -876,6 +877,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1014,7 +1016,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1095,7 +1097,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1105,7 +1107,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1115,7 +1117,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1144,8 +1146,8 @@
|
|||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
font-family: DM sans;
|
||||
float: left;
|
||||
//border: 1px solid black;
|
||||
|
@ -1382,8 +1384,8 @@
|
|||
}
|
||||
|
||||
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
font-family: DM sans;
|
||||
float: left;
|
||||
//border: 1px solid black;
|
||||
|
@ -1419,7 +1421,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1460,7 +1462,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1489,7 +1491,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1558,6 +1560,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1701,7 +1704,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1782,7 +1785,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1792,7 +1795,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1802,7 +1805,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1823,7 +1826,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1952,8 +1955,8 @@
|
|||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
.div_row_dialog {
|
||||
font-family: DM sans;
|
||||
font-family: DM sans;
|
||||
float: left;
|
||||
//border: 1px solid black;
|
||||
|
@ -1989,7 +1992,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2030,7 +2033,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2059,7 +2062,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2128,6 +2131,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2350,7 +2354,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2431,7 +2435,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2441,7 +2445,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2451,7 +2455,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2472,7 +2476,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2584,12 +2588,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2658,6 +2664,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
.btn-success {
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 50%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -52,7 +52,7 @@
|
|||
width: 98%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -67,7 +67,7 @@
|
|||
width: 49.8%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -133,7 +133,7 @@
|
|||
}
|
||||
|
||||
.art_criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -188,7 +188,7 @@
|
|||
width: 100%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 15px;
|
||||
background: #FFF;
|
||||
|
@ -207,7 +207,7 @@
|
|||
|
||||
.btn-success {
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 50%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -252,7 +252,7 @@
|
|||
width: 98%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -268,7 +268,7 @@
|
|||
width: 49.8%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -334,7 +334,7 @@
|
|||
}
|
||||
|
||||
.art_criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -389,7 +389,7 @@
|
|||
width: 100%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 25px;
|
||||
padding: 5px;
|
||||
|
@ -407,7 +407,7 @@
|
|||
|
||||
.btn-success {
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 40%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -452,7 +452,7 @@
|
|||
width: 100%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 25px;
|
||||
padding: 5px;
|
||||
|
@ -467,7 +467,7 @@
|
|||
width: 49%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -482,7 +482,7 @@
|
|||
width: 49.8%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -548,7 +548,7 @@
|
|||
}
|
||||
|
||||
.art_criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -605,7 +605,7 @@
|
|||
|
||||
.btn-success {
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 40%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -650,7 +650,7 @@
|
|||
width: 100%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 25px;
|
||||
padding: 5px;
|
||||
|
@ -666,7 +666,7 @@
|
|||
width: 49%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -681,7 +681,7 @@
|
|||
width: 49.8%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -753,7 +753,7 @@
|
|||
}
|
||||
|
||||
.art_criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
.btn-success{
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 50%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -55,7 +55,7 @@
|
|||
|
||||
.btn-success{
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 50%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -95,7 +95,7 @@
|
|||
|
||||
.btn-success{
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 40%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -134,7 +134,7 @@
|
|||
|
||||
.btn-success{
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 40%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -107,7 +107,7 @@
|
|||
.texte_area_adress {
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -117,7 +117,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -181,7 +181,7 @@
|
|||
width: 80%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
@ -264,7 +264,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -276,7 +276,7 @@
|
|||
.texte_area_adress {
|
||||
width: 96% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -286,7 +286,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -350,7 +350,7 @@
|
|||
width: 60%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
@ -427,7 +427,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -439,7 +439,7 @@
|
|||
.texte_area_adress {
|
||||
width: 96% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -449,7 +449,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -513,7 +513,7 @@
|
|||
width: 50%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
@ -593,7 +593,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -605,7 +605,7 @@
|
|||
.texte_area_adress {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -615,7 +615,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -640,7 +640,7 @@
|
|||
border-width: 0.01rem;
|
||||
width: 50%;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -652,7 +652,7 @@
|
|||
width: 50%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -662,7 +662,7 @@
|
|||
width: 50%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -108,7 +108,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -137,7 +137,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -196,6 +196,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -323,7 +324,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -396,7 +397,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -406,7 +407,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -415,7 +416,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -617,7 +618,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -658,7 +659,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -686,7 +687,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -757,6 +758,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -891,7 +893,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -963,7 +965,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -973,7 +975,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -983,7 +985,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1226,7 +1228,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1267,7 +1269,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1295,7 +1297,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1366,6 +1368,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1500,7 +1503,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1572,7 +1575,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1582,7 +1585,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1592,7 +1595,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1613,7 +1616,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1691,7 +1694,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1732,7 +1735,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1760,7 +1763,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1845,6 +1848,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2065,7 +2069,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2137,7 +2141,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2147,7 +2151,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2157,7 +2161,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2178,7 +2182,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -108,7 +108,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -138,7 +138,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -197,6 +197,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -326,7 +327,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -399,7 +400,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -409,7 +410,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -418,7 +419,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -621,7 +622,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -662,7 +663,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -692,7 +693,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -763,6 +764,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -899,7 +901,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -971,7 +973,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -981,7 +983,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -991,7 +993,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1236,7 +1238,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1277,7 +1279,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1307,7 +1309,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1378,6 +1380,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1514,7 +1517,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1586,7 +1589,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1596,7 +1599,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1606,7 +1609,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1627,7 +1630,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1706,7 +1709,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1747,7 +1750,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1778,7 +1781,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1863,6 +1866,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2085,7 +2089,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2157,7 +2161,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2167,7 +2171,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2177,7 +2181,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2198,7 +2202,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
@ -252,7 +252,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
@ -472,7 +472,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -689,7 +689,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium !important;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -174,7 +174,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -117,7 +117,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -146,7 +146,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -206,6 +206,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -337,7 +338,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -410,7 +411,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -420,7 +421,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -429,7 +430,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -619,7 +620,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -660,7 +661,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -688,7 +689,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -747,6 +748,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -900,7 +902,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -972,7 +974,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -982,7 +984,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -992,7 +994,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1220,7 +1222,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1261,7 +1263,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1289,7 +1291,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1360,6 +1362,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1515,7 +1518,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1587,7 +1590,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1597,7 +1600,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1607,7 +1610,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1628,7 +1631,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1696,7 +1699,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1737,7 +1740,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1765,7 +1768,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1837,6 +1840,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2059,7 +2063,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2131,7 +2135,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2141,7 +2145,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2151,7 +2155,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2172,7 +2176,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -157,7 +157,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -186,7 +186,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -243,6 +243,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -370,7 +371,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -443,7 +444,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -453,7 +454,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -462,7 +463,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -693,7 +694,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -730,7 +731,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -771,7 +772,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -799,7 +800,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -869,6 +870,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1005,7 +1007,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1077,7 +1079,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1087,7 +1089,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1097,7 +1099,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1325,7 +1327,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1399,7 +1401,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1440,7 +1442,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1468,7 +1470,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1537,6 +1539,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1676,7 +1679,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1748,7 +1751,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1758,7 +1761,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1768,7 +1771,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1789,7 +1792,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1941,7 +1944,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1982,7 +1985,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2010,7 +2013,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2079,6 +2082,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2297,7 +2301,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2369,7 +2373,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2379,7 +2383,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2389,7 +2393,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2410,7 +2414,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2517,12 +2521,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2553,6 +2559,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -157,7 +157,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -186,7 +186,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -243,6 +243,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -370,7 +371,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -443,7 +444,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -453,7 +454,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -462,7 +463,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -693,7 +694,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -730,7 +731,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -771,7 +772,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -799,7 +800,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -869,6 +870,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1005,7 +1007,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1077,7 +1079,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1087,7 +1089,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1097,7 +1099,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1325,7 +1327,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1399,7 +1401,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1440,7 +1442,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1468,7 +1470,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1537,6 +1539,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1676,7 +1679,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1748,7 +1751,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1758,7 +1761,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1768,7 +1771,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1789,7 +1792,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1941,7 +1944,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1982,7 +1985,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2010,7 +2013,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2079,6 +2082,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2298,7 +2302,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2370,7 +2374,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2380,7 +2384,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2390,7 +2394,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2411,7 +2415,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2518,12 +2522,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2554,6 +2560,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.btn_login {
|
||||
|
@ -111,7 +111,7 @@
|
|||
text-align: left;
|
||||
background-color: white;
|
||||
font-size: small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.connect {
|
||||
|
@ -328,7 +328,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.div_centre_social {
|
||||
|
@ -343,13 +343,13 @@
|
|||
text-align: left;
|
||||
background-color: white;
|
||||
font-size: large;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.mb-3 {
|
||||
font-size: small !important;
|
||||
margin: 0.2rem !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
button:hover {
|
||||
|
@ -697,7 +697,7 @@
|
|||
.mb-3 {
|
||||
font-size: medium !important;
|
||||
margin: 0.2rem !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
/*style grande tablettes & Pc portable */
|
||||
|
@ -738,7 +738,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.div_centre_social {
|
||||
|
@ -753,7 +753,7 @@
|
|||
text-align: left;
|
||||
background-color: white;
|
||||
font-size: x-large;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
button:hover {
|
||||
|
@ -1122,7 +1122,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.div_centre_social {
|
||||
|
@ -1137,7 +1137,7 @@
|
|||
text-align: left;
|
||||
background-color: white;
|
||||
font-size: x-large;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
button:hover {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
.title {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.texte_area_passwd {
|
||||
|
@ -24,7 +24,7 @@
|
|||
.btn_modif {
|
||||
width: 95%;
|
||||
font-weight: bold;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.div_centre {
|
||||
|
@ -40,7 +40,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.img_logo {
|
||||
|
@ -90,13 +90,13 @@
|
|||
.title {
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.btn_modif {
|
||||
width: 72%;
|
||||
font-weight: bold;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
.texte_area_passwd {
|
||||
width: 70% !important;
|
||||
|
@ -144,13 +144,13 @@
|
|||
.title {
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.btn_modif {
|
||||
width: 72%;
|
||||
font-weight: bold;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.texte_area_passwd {
|
||||
|
@ -170,7 +170,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.img_logo {
|
||||
|
@ -206,13 +206,13 @@
|
|||
.title {
|
||||
font-size: x-large;
|
||||
font-weight: bold;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.btn_modif {
|
||||
width: 51%;
|
||||
font-weight: bold;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.texte_area_passwd {
|
||||
|
@ -232,7 +232,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: large;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.img_logo {
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -155,7 +155,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -185,7 +185,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -242,6 +242,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -371,7 +372,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -444,7 +445,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -454,7 +455,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -463,7 +464,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -760,7 +761,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -801,7 +802,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -832,7 +833,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -897,6 +898,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1035,7 +1037,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1107,7 +1109,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1117,7 +1119,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1127,7 +1129,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1458,7 +1460,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1499,7 +1501,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1530,7 +1532,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1615,6 +1617,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1758,7 +1761,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1830,7 +1833,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1840,7 +1843,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1850,7 +1853,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1871,7 +1874,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1884,7 +1887,7 @@
|
|||
}
|
||||
|
||||
.titre2 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2060,7 +2063,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2101,7 +2104,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2132,7 +2135,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2231,6 +2234,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2482,7 +2486,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2554,7 +2558,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2564,7 +2568,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2574,7 +2578,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2595,7 +2599,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2608,7 +2612,7 @@
|
|||
}
|
||||
|
||||
.titre2 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2722,12 +2726,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2804,6 +2810,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -154,7 +154,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
|
@ -293,13 +293,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -329,7 +329,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
|
||||
font-weight: normal;
|
||||
|
@ -357,7 +357,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -413,7 +413,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: small;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -1620,7 +1620,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -1758,13 +1758,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -1800,7 +1800,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1828,7 +1828,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1883,7 +1883,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -3704,7 +3704,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -3842,13 +3842,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -3884,7 +3884,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -3912,7 +3912,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -3969,7 +3969,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -5787,7 +5787,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -5924,13 +5924,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -5966,7 +5966,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -5994,7 +5994,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -6071,7 +6071,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -69,7 +69,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -303,7 +303,7 @@
|
|||
}
|
||||
|
||||
.titre_date_publication {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #3b3e40;
|
||||
font-size: xx-small;
|
||||
font-weight: bold;
|
||||
|
@ -365,7 +365,7 @@
|
|||
}
|
||||
|
||||
.titre_article {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #619e31;
|
||||
font-size: 1.4rem;
|
||||
font-weight: bold;
|
||||
|
@ -397,7 +397,7 @@
|
|||
flex: none;
|
||||
order: 1;
|
||||
flex-grow: 0;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 30px;
|
||||
|
||||
|
||||
|
@ -492,7 +492,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -509,7 +509,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -811,7 +811,7 @@
|
|||
}
|
||||
|
||||
.titre_date_publication {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #3b3e40;
|
||||
font-size: xx-small;
|
||||
font-weight: bold;
|
||||
|
@ -873,7 +873,7 @@
|
|||
}
|
||||
|
||||
.titre_article {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #619e31;
|
||||
font-size: 1.4rem;
|
||||
font-weight: bold;
|
||||
|
@ -901,7 +901,7 @@
|
|||
flex: none;
|
||||
order: 1;
|
||||
flex-grow: 0;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 30px;
|
||||
|
||||
|
||||
|
@ -997,7 +997,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -1014,7 +1014,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -1264,7 +1264,7 @@
|
|||
}
|
||||
|
||||
.titre_date_publication {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #3b3e40;
|
||||
font-size: xx-small;
|
||||
font-weight: bold;
|
||||
|
@ -1326,7 +1326,7 @@
|
|||
}
|
||||
|
||||
.titre_article {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #619e31;
|
||||
font-size: 1.4rem;
|
||||
font-weight: bold;
|
||||
|
@ -1354,7 +1354,7 @@
|
|||
flex: none;
|
||||
order: 1;
|
||||
flex-grow: 0;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 30px;
|
||||
|
||||
|
||||
|
@ -1449,7 +1449,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -1466,7 +1466,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -1700,7 +1700,7 @@
|
|||
}
|
||||
|
||||
.titre_date_publication {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #3b3e40;
|
||||
font-size: xx-small;
|
||||
font-weight: bold;
|
||||
|
@ -1762,7 +1762,7 @@
|
|||
}
|
||||
|
||||
.titre_article {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #619e31;
|
||||
font-size: 1.4rem;
|
||||
font-weight: bold;
|
||||
|
@ -1790,7 +1790,7 @@
|
|||
flex: none;
|
||||
order: 1;
|
||||
flex-grow: 0;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 30px;
|
||||
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
}
|
||||
|
||||
.titre_date_publication {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #3b3e40;
|
||||
font-size: xx-small;
|
||||
font-weight: bold;
|
||||
|
@ -403,7 +403,7 @@
|
|||
}
|
||||
|
||||
.titre_date_publication {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #3b3e40;
|
||||
font-size: xx-small;
|
||||
font-weight: bold;
|
||||
|
@ -442,7 +442,7 @@
|
|||
padding: 0.8rem;
|
||||
text-align: left;
|
||||
padding: 10px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
|
@ -463,7 +463,7 @@
|
|||
padding: 0.8rem;
|
||||
text-align: left;
|
||||
padding: 10px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
|
@ -510,7 +510,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.75rem;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -798,7 +798,7 @@
|
|||
padding: 0.8rem;
|
||||
text-align: left;
|
||||
margin: auto;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: #3b3e40;
|
||||
|
@ -818,7 +818,7 @@
|
|||
padding: 0.8rem;
|
||||
text-align: left;
|
||||
margin: auto;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: #3b3e40;
|
||||
|
@ -833,7 +833,7 @@
|
|||
}
|
||||
|
||||
.titre_article {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #619e31;
|
||||
font-size: 1.2rem;
|
||||
font-weight: bold;
|
||||
|
@ -841,7 +841,7 @@
|
|||
}
|
||||
|
||||
.titre_date_publication {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #3b3e40;
|
||||
font-size: xx-small;
|
||||
font-weight: bold;
|
||||
|
@ -913,7 +913,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
}
|
||||
input {
|
||||
|
@ -1220,7 +1220,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.9rem;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -1237,7 +1237,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
|
@ -1254,7 +1254,7 @@
|
|||
}
|
||||
|
||||
.titre_article {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #619e31;
|
||||
font-size: 1.4rem;
|
||||
font-weight: bold;
|
||||
|
@ -1263,7 +1263,7 @@
|
|||
}
|
||||
|
||||
.titre_date_publication {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #3b3e40;
|
||||
font-size: xx-small;
|
||||
font-weight: bold;
|
||||
|
@ -1276,7 +1276,7 @@
|
|||
padding: 0.8rem;
|
||||
text-align: left;
|
||||
margin: auto;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: #3b3e40;
|
||||
|
@ -1296,7 +1296,7 @@
|
|||
padding: 0.8rem;
|
||||
text-align: left;
|
||||
margin: auto;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: #3b3e40;
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -159,7 +159,7 @@
|
|||
|
||||
.detail_rightbox {
|
||||
float: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
border-width: 2px;
|
||||
width: 74%;
|
||||
|
@ -170,7 +170,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
@ -186,7 +186,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
margin-top: 0.1rem;
|
||||
|
@ -203,7 +203,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
margin-top: 0.1rem;
|
||||
|
@ -220,7 +220,7 @@
|
|||
text-align: right;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.7rem !important;
|
||||
margin-bottom: 0.1rem;
|
||||
margin-top: 0.1rem;
|
||||
|
@ -238,7 +238,7 @@
|
|||
text-align: right;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
margin-top: 0.1rem;
|
||||
|
@ -255,7 +255,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.7rem;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -274,7 +274,7 @@
|
|||
text-align: right;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-bottom: 0.1rem;
|
||||
}
|
||||
|
||||
|
@ -288,7 +288,7 @@
|
|||
text-align: right;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
margin-top: 0.2rem;
|
||||
|
@ -303,7 +303,7 @@
|
|||
text-align: left;
|
||||
color: red;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
margin-top: 0.2rem;
|
||||
|
@ -322,7 +322,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
}
|
||||
|
@ -338,7 +338,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
background-color: rgb(131, 70, 70);
|
||||
|
@ -355,7 +355,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
background-color: aquamarine;
|
||||
|
@ -373,7 +373,7 @@
|
|||
text-align: right;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
}
|
||||
|
@ -493,7 +493,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -633,7 +633,7 @@
|
|||
border-bottom-left-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.05rem;
|
||||
font-weight: bold;
|
||||
|
@ -661,7 +661,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -677,7 +677,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -697,7 +697,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -708,7 +708,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
}
|
||||
|
@ -739,7 +739,7 @@
|
|||
}
|
||||
|
||||
.block {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
float: left;
|
||||
align-items: center;
|
||||
|
@ -758,7 +758,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -938,7 +938,7 @@
|
|||
}
|
||||
|
||||
p {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
@ -1138,7 +1138,7 @@
|
|||
border-bottom-left-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: bold;
|
||||
|
@ -1166,7 +1166,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -1182,7 +1182,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1202,7 +1202,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -1213,7 +1213,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
}
|
||||
|
@ -1246,7 +1246,7 @@
|
|||
}
|
||||
|
||||
.block {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
float: left;
|
||||
align-items: center;
|
||||
|
@ -1265,7 +1265,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -1445,7 +1445,7 @@
|
|||
}
|
||||
|
||||
p {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.7;
|
||||
font-size: 0.9rem;
|
||||
margin-bottom: 4px;
|
||||
|
@ -1642,7 +1642,7 @@
|
|||
border-bottom-left-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: bold;
|
||||
|
@ -1670,7 +1670,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -1686,7 +1686,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1706,7 +1706,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -1717,7 +1717,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
}
|
||||
|
@ -1750,7 +1750,7 @@
|
|||
}
|
||||
|
||||
.block {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
float: left;
|
||||
align-items: center;
|
||||
|
@ -1769,7 +1769,7 @@
|
|||
text-align: left;
|
||||
color: #3b3e40;
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -1952,7 +1952,7 @@
|
|||
}
|
||||
|
||||
p {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.7;
|
||||
font-size: 0.95rem;
|
||||
margin-bottom: 4px;
|
||||
|
@ -2011,7 +2011,7 @@
|
|||
color: #3b3e40;
|
||||
font-size: 0.9rem;
|
||||
word-break: break-word;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -2156,7 +2156,7 @@
|
|||
border-bottom-left-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: bold;
|
||||
|
@ -2184,7 +2184,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -2200,7 +2200,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2220,7 +2220,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -2231,7 +2231,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -154,7 +154,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
|
@ -293,13 +293,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -329,7 +329,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
|
||||
font-weight: normal;
|
||||
|
@ -357,7 +357,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -411,7 +411,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: small;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -508,7 +508,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -646,13 +646,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -688,7 +688,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -716,7 +716,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -771,7 +771,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -866,7 +866,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -1004,13 +1004,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -1046,7 +1046,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1074,7 +1074,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1129,7 +1129,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -1223,7 +1223,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -1360,13 +1360,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -1402,7 +1402,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1430,7 +1430,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1505,7 +1505,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
|
|
@ -154,7 +154,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
|
@ -293,13 +293,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -329,7 +329,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
|
||||
font-weight: normal;
|
||||
|
@ -357,7 +357,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -413,7 +413,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: small;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -1624,7 +1624,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -1762,13 +1762,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -1804,7 +1804,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1832,7 +1832,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1887,7 +1887,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -3681,7 +3681,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -3819,13 +3819,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -3861,7 +3861,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -3889,7 +3889,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -3946,7 +3946,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -5737,7 +5737,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -5874,13 +5874,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -5916,7 +5916,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -5944,7 +5944,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -6021,7 +6021,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
|
|
@ -154,7 +154,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
|
@ -293,13 +293,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -329,7 +329,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
|
||||
font-weight: normal;
|
||||
|
@ -357,7 +357,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -415,7 +415,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: small;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -1482,7 +1482,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -1620,13 +1620,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -1662,7 +1662,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1690,7 +1690,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1746,7 +1746,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -3532,7 +3532,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -3670,13 +3670,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -3712,7 +3712,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -3740,7 +3740,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -3798,7 +3798,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
@ -5585,7 +5585,7 @@
|
|||
.titre_formation {
|
||||
color: #619e31;
|
||||
font-size: 1.5rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.2rem;
|
||||
}
|
||||
|
@ -5722,13 +5722,13 @@
|
|||
.vignet_title {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
||||
.vignet_desc {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
line-height: 1.43;
|
||||
font-size: small;
|
||||
margin-bottom: 4px;
|
||||
|
@ -5764,7 +5764,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -5792,7 +5792,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -5870,7 +5870,7 @@
|
|||
.sous_titre {
|
||||
color: #619e31;
|
||||
font-size: medium;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 0.1rem;
|
||||
}
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -185,7 +185,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -242,6 +242,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -371,7 +372,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -444,7 +445,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -454,7 +455,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -463,7 +464,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -724,6 +725,7 @@
|
|||
}
|
||||
|
||||
.block_groupe_class_text {
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
width: 100%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
|
@ -760,7 +762,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -832,7 +834,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -902,6 +904,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1040,7 +1043,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1112,7 +1115,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1122,7 +1125,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1132,7 +1135,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1389,6 +1392,7 @@
|
|||
}
|
||||
|
||||
.block_groupe_class_text {
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
width: 30%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
|
@ -1462,7 +1466,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1534,7 +1538,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1603,6 +1607,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1746,7 +1751,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1818,7 +1823,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1828,7 +1833,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1838,7 +1843,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1859,7 +1864,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1979,6 +1984,7 @@
|
|||
}
|
||||
|
||||
.block_groupe_class_text {
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
width: 45%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
|
@ -2051,7 +2057,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2123,7 +2129,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2206,6 +2212,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2458,7 +2465,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2530,7 +2537,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2540,7 +2547,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2550,7 +2557,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2571,7 +2578,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2689,12 +2696,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2758,6 +2767,7 @@
|
|||
}
|
||||
|
||||
.block_groupe_class_text {
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
width: 30%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
|
@ -2944,6 +2954,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -102,7 +102,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -143,7 +143,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -173,7 +173,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -245,6 +245,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -376,7 +377,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -449,7 +450,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -459,7 +460,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -468,7 +469,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -679,7 +680,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -720,7 +721,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -749,7 +750,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -820,6 +821,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -973,7 +975,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1045,7 +1047,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1055,7 +1057,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1065,7 +1067,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1313,7 +1315,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1354,7 +1356,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1383,7 +1385,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1454,6 +1456,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1609,7 +1612,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1681,7 +1684,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1691,7 +1694,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1701,7 +1704,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1722,7 +1725,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1817,7 +1820,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1858,7 +1861,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1887,7 +1890,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1960,6 +1963,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2182,7 +2186,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2254,7 +2258,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2264,7 +2268,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2274,7 +2278,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2295,7 +2299,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
background: #81BC3A;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.mysy_spinner {
|
||||
border-radius: 5px;
|
||||
|
@ -75,21 +75,21 @@
|
|||
.texte_area {
|
||||
width: 90% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
.texte_area_adress {
|
||||
width: 90% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
.texte_area_passwd {
|
||||
width: 90% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
|
@ -100,7 +100,7 @@
|
|||
}*/
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -254,7 +254,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -263,7 +263,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -441,7 +441,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -471,7 +471,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -518,6 +518,7 @@
|
|||
}
|
||||
|
||||
.block_groupe_class_text{
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
width: 100%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
|
@ -545,21 +546,21 @@
|
|||
.texte_area {
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
.texte_area_adress {
|
||||
width: 96% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
.texte_area_passwd {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
|
@ -570,7 +571,7 @@
|
|||
}*/
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -725,7 +726,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -735,7 +736,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -923,7 +924,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -952,7 +953,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1000,6 +1001,7 @@
|
|||
}
|
||||
|
||||
.block_groupe_class_text{
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
width: 30%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
|
@ -1025,7 +1027,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1039,21 +1041,21 @@
|
|||
.texte_area {
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
.texte_area_adress {
|
||||
width: 96% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
.texte_area_passwd {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
|
@ -1208,7 +1210,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1218,7 +1220,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1406,7 +1408,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1435,7 +1437,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1479,6 +1481,7 @@
|
|||
}
|
||||
|
||||
.block_groupe_class_text{
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
width: 45%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
|
@ -1504,7 +1507,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1518,21 +1521,21 @@
|
|||
.texte_area {
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
.texte_area_adress {
|
||||
width: 96% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
.texte_area_passwd {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
}
|
||||
|
||||
|
@ -1688,7 +1691,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1698,7 +1701,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1882,7 +1885,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1911,7 +1914,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1956,6 +1959,7 @@
|
|||
}
|
||||
|
||||
.block_groupe_class_text{
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
width: 30%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
width: 79%;
|
||||
border-radius: 0.5rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding-left: 0.5rem;
|
||||
font-style: oblique;
|
||||
font-size: x-small;
|
||||
|
@ -97,7 +97,7 @@
|
|||
width: 20%;
|
||||
border-radius: 1rem;
|
||||
text-align: right;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
@ -152,7 +152,7 @@
|
|||
border-width: 0.01rem;
|
||||
margin-bottom: 0.5rem;
|
||||
border-radius: 1rem;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: smaller;
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
|
@ -177,7 +177,7 @@
|
|||
width: 59%;
|
||||
border-radius: 1rem;
|
||||
text-align: center;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-style: oblique;
|
||||
font-size: small;
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
|
@ -194,7 +194,7 @@
|
|||
width: 20%;
|
||||
border-radius: 1rem;
|
||||
text-align: right;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
@ -269,7 +269,7 @@
|
|||
border-radius: 1rem;
|
||||
text-align: center;
|
||||
font-style: oblique;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
|
@ -285,7 +285,7 @@
|
|||
width: 20%;
|
||||
border-radius: 1rem;
|
||||
text-align: right;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
@ -351,7 +351,7 @@
|
|||
width: 79%;
|
||||
border-radius: 1rem;
|
||||
text-align: center;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
margin: auto;
|
||||
font-style: oblique;
|
||||
|
@ -371,7 +371,7 @@
|
|||
width: 10%;
|
||||
border-radius: 1rem;
|
||||
text-align: right;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
text-align: left;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -130,7 +130,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -171,7 +171,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -200,7 +200,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -260,6 +260,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -409,7 +410,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -482,7 +483,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -492,7 +493,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -501,7 +502,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -747,7 +748,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -788,7 +789,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -816,7 +817,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -889,6 +890,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1044,7 +1046,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1116,7 +1118,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1126,7 +1128,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1136,7 +1138,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1405,7 +1407,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1446,7 +1448,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1474,7 +1476,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1550,6 +1552,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1707,7 +1710,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1779,7 +1782,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1789,7 +1792,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1799,7 +1802,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1820,7 +1823,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1942,7 +1945,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1983,7 +1986,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2011,7 +2014,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2046,6 +2049,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2120,6 +2124,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2359,7 +2364,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2431,7 +2436,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2441,7 +2446,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2451,7 +2456,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2472,7 +2477,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2609,6 +2614,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
padding: 0px !important;
|
||||
padding-left: 5px !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.okUpdateData {
|
||||
|
@ -79,7 +79,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -120,7 +120,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -150,7 +150,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -208,6 +208,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -330,7 +331,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -403,7 +404,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -413,7 +414,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -422,7 +423,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -645,7 +646,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -686,7 +687,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -715,7 +716,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -786,6 +787,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -929,7 +931,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1001,7 +1003,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1011,7 +1013,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1021,7 +1023,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1284,7 +1286,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1325,7 +1327,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1354,7 +1356,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1425,6 +1427,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1593,7 +1596,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1665,7 +1668,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1675,7 +1678,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1685,7 +1688,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1706,7 +1709,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1743,6 +1746,7 @@
|
|||
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.block_en_mass {
|
||||
width: 50%;
|
||||
float: left;
|
||||
|
@ -1762,7 +1766,8 @@
|
|||
float: left;
|
||||
margin-bottom: 1rem;
|
||||
padding-top: 0.5rem !important;
|
||||
} }
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1200px) {
|
||||
.okUpdateData {
|
||||
|
@ -1812,7 +1817,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1853,7 +1858,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1882,7 +1887,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1951,6 +1956,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2192,7 +2198,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2264,7 +2270,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2274,7 +2280,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2284,7 +2290,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2305,7 +2311,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2377,6 +2383,50 @@
|
|||
|
||||
// end media
|
||||
|
||||
|
||||
.separator {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
margin-bottom: 0.5rem !important;
|
||||
|
||||
}
|
||||
|
||||
.separator::before {
|
||||
content: '';
|
||||
flex: 1;
|
||||
border-top: 4px double #999;
|
||||
}
|
||||
|
||||
|
||||
.separator::after {
|
||||
content: '';
|
||||
flex: 1;
|
||||
border-top: 4px double #999;
|
||||
}
|
||||
|
||||
.separator:not(:empty)::before {
|
||||
margin-right: .35em;
|
||||
}
|
||||
|
||||
.separator:not(:empty)::after {
|
||||
margin-left: .35em;
|
||||
}
|
||||
|
||||
|
||||
.separator_label {
|
||||
width: 10rem;
|
||||
float: left;
|
||||
font-family: 'DM Sans';
|
||||
color: blue;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
background: #d5d8dc;
|
||||
text-align: center;
|
||||
border: none;
|
||||
|
||||
}
|
||||
|
||||
.session_caract_Dialog_comment_2_lines {
|
||||
|
||||
width: 100%;
|
||||
|
@ -2418,6 +2468,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
text-align: left;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -130,7 +130,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -171,7 +171,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -200,7 +200,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -260,6 +260,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -409,7 +410,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -482,7 +483,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -492,7 +493,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -501,7 +502,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -749,7 +750,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -790,7 +791,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -818,7 +819,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -891,6 +892,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1046,7 +1048,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1118,7 +1120,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1128,7 +1130,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1138,7 +1140,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1405,7 +1407,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1446,7 +1448,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1474,7 +1476,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1550,6 +1552,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1707,7 +1710,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1779,7 +1782,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1789,7 +1792,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1799,7 +1802,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1820,7 +1823,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1942,7 +1945,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1983,7 +1986,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2011,7 +2014,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2046,6 +2049,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2120,6 +2124,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2360,7 +2365,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2432,7 +2437,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2442,7 +2447,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2452,7 +2457,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2473,7 +2478,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2611,6 +2616,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
.texte_area {
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -76,7 +76,7 @@
|
|||
.texte_area_adress {
|
||||
width: 94% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
background-color: "#ECEFF1";
|
||||
|
@ -85,7 +85,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -222,7 +222,7 @@
|
|||
.texte_area {
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -234,7 +234,7 @@
|
|||
.texte_area_adress {
|
||||
width: 94% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
background-color: "#ECEFF1";
|
||||
|
@ -243,7 +243,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -376,7 +376,7 @@
|
|||
.texte_area {
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -388,7 +388,7 @@
|
|||
.texte_area_adress {
|
||||
width: 94% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
background-color: "#ECEFF1";
|
||||
|
@ -397,7 +397,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -533,7 +533,7 @@
|
|||
.texte_area {
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -545,7 +545,7 @@
|
|||
.texte_area_adress {
|
||||
width: 94% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
background-color: "#ECEFF1";
|
||||
|
@ -554,7 +554,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -73,12 +73,12 @@
|
|||
width: 80%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
@ -1102,12 +1102,12 @@
|
|||
width: 80%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
@ -2114,7 +2114,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -2161,7 +2161,7 @@
|
|||
width: 80%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -3175,7 +3175,7 @@
|
|||
}
|
||||
|
||||
.nom_prenom {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large !important;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -3222,7 +3222,7 @@
|
|||
width: 80%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
|
||||
.criteres {
|
||||
font-size: 0.69rem;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
//font-size: smaller;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -144,7 +144,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -193,7 +193,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -222,7 +222,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -530,7 +530,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.70rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -540,7 +540,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -589,7 +589,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -618,7 +618,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -877,7 +877,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.8rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -887,7 +887,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -936,7 +936,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -965,7 +965,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -1231,7 +1231,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -1243,7 +1243,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -1292,7 +1292,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -1321,7 +1321,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
.criteres {
|
||||
font-size: 0.69rem;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -106,11 +106,11 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
font-size: 0.74rem;
|
||||
|
@ -154,7 +154,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 0.85rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -221,7 +221,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.77rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -231,11 +231,11 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.74rem;
|
||||
line-height: 1.3rem;
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
|
@ -279,7 +279,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 0.9rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -346,7 +346,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.8rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -356,11 +356,11 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.77rem;
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
|
@ -403,7 +403,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -470,7 +470,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -480,11 +480,11 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
padding-bottom: 0rem;
|
||||
|
@ -529,7 +529,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
|
||||
.criteres {
|
||||
font-size: 0.69rem;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
//font-size: smaller;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -148,7 +148,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -227,7 +227,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -559,7 +559,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.70rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -569,7 +569,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -648,7 +648,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -930,7 +930,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.8rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -940,7 +940,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -1019,7 +1019,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -1307,7 +1307,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -1319,7 +1319,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -1398,7 +1398,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -1436,7 +1436,7 @@
|
|||
.aaatraining_price_barre {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
|
|
@ -127,7 +127,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.75rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -137,11 +137,11 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.74rem;
|
||||
line-height: 1.3rem;
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
|
@ -186,7 +186,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -215,7 +215,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -463,7 +463,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.8rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -473,11 +473,11 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.77rem;
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
|
@ -522,7 +522,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -551,7 +551,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -805,7 +805,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -817,11 +817,11 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
padding-bottom: 0rem;
|
||||
|
@ -866,7 +866,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -895,7 +895,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -1145,7 +1145,7 @@
|
|||
|
||||
.criteres {
|
||||
font-size: 20px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
//font-size: smaller;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -1214,11 +1214,11 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
font-size: 30px;
|
||||
|
@ -1263,7 +1263,7 @@
|
|||
.training_title {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: center;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -1292,7 +1292,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
|
||||
.criteres {
|
||||
font-size: 0.69rem;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
//font-size: smaller;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -148,7 +148,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -227,7 +227,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -559,7 +559,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.70rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -569,7 +569,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -648,7 +648,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -930,7 +930,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.8rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -940,7 +940,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -1019,7 +1019,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -1307,7 +1307,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -1319,7 +1319,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -1398,7 +1398,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -1436,7 +1436,7 @@
|
|||
.aaatraining_price_barre {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
|
|
@ -117,7 +117,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -158,7 +158,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -187,7 +187,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -255,6 +255,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -429,7 +430,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -542,7 +543,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -583,7 +584,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -611,7 +612,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -680,6 +681,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -847,7 +849,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -959,7 +961,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1000,7 +1002,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1028,7 +1030,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1097,6 +1099,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1268,7 +1271,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1380,7 +1383,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1421,7 +1424,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1449,7 +1452,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1523,6 +1526,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1816,7 +1820,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -121,7 +121,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -151,7 +151,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -222,6 +222,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -344,7 +345,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -417,7 +418,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -427,7 +428,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -436,7 +437,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -651,7 +652,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -692,7 +693,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -721,7 +722,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -792,6 +793,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -935,7 +937,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1007,7 +1009,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1017,7 +1019,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1027,7 +1029,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1280,7 +1282,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1321,7 +1323,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1350,7 +1352,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1421,6 +1423,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1589,7 +1592,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1661,7 +1664,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1671,7 +1674,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1681,7 +1684,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1702,7 +1705,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1804,7 +1807,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1845,7 +1848,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1874,7 +1877,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1943,6 +1946,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2177,7 +2181,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2249,7 +2253,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2259,7 +2263,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2269,7 +2273,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2290,7 +2294,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2413,6 +2417,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -155,7 +155,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -185,7 +185,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -242,6 +242,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -371,7 +372,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -444,7 +445,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -454,7 +455,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -463,7 +464,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -740,7 +741,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -781,7 +782,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -812,7 +813,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -882,6 +883,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1020,7 +1022,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1092,7 +1094,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1102,7 +1104,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1112,7 +1114,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1423,7 +1425,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1464,7 +1466,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1495,7 +1497,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1564,6 +1566,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1707,7 +1710,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1779,7 +1782,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1789,7 +1792,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1799,7 +1802,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1820,7 +1823,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1993,7 +1996,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2034,7 +2037,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2065,7 +2068,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2148,6 +2151,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2400,7 +2404,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2472,7 +2476,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2482,7 +2486,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2492,7 +2496,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2513,7 +2517,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2628,12 +2632,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2748,6 +2754,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
width: 80%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
@ -114,7 +114,7 @@
|
|||
width: 15rem;
|
||||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -130,7 +130,7 @@
|
|||
width: 15rem;
|
||||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -150,6 +150,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 95%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -174,7 +175,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -202,7 +203,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -270,7 +271,7 @@
|
|||
width: 60%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
@ -288,7 +289,7 @@
|
|||
width: 15rem;
|
||||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -304,7 +305,7 @@
|
|||
width: 15rem;
|
||||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -324,6 +325,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 95%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -348,7 +350,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -376,7 +378,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -442,7 +444,7 @@
|
|||
width: 50%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
@ -461,7 +463,7 @@
|
|||
width: 15rem;
|
||||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -477,7 +479,7 @@
|
|||
width: 15rem;
|
||||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -497,6 +499,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 95%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -521,7 +524,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -549,7 +552,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -588,7 +591,7 @@
|
|||
border-width: 0.01rem;
|
||||
width: 48%;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -600,7 +603,7 @@
|
|||
width: 48%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -610,7 +613,7 @@
|
|||
width: 50%;
|
||||
padding-left: 5px;
|
||||
border-radius: 0px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
@ -629,7 +632,7 @@
|
|||
width: 15rem;
|
||||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -645,7 +648,7 @@
|
|||
width: 15rem;
|
||||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -665,6 +668,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 45%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -689,7 +693,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -717,7 +721,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -176,7 +176,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -295,7 +295,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -416,7 +416,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -106,7 +106,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -136,7 +136,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -195,6 +195,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -344,7 +345,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -417,7 +418,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -427,7 +428,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -436,7 +437,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -631,7 +632,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -672,7 +673,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -701,7 +702,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -772,6 +773,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -927,7 +929,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -999,7 +1001,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1009,7 +1011,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1019,7 +1021,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1238,7 +1240,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1279,7 +1281,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1308,7 +1310,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1382,6 +1384,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1539,7 +1542,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1611,7 +1614,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1621,7 +1624,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1631,7 +1634,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1652,7 +1655,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1725,7 +1728,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1766,7 +1769,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1795,7 +1798,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1828,6 +1831,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1901,6 +1905,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2141,7 +2146,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2213,7 +2218,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2223,7 +2228,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2233,7 +2238,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2254,7 +2259,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2347,6 +2352,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -102,7 +102,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -143,7 +143,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -173,7 +173,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -245,6 +245,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -376,7 +377,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -449,7 +450,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -459,7 +460,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -468,7 +469,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -679,7 +680,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -720,7 +721,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -749,7 +750,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -820,6 +821,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -973,7 +975,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1045,7 +1047,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1055,7 +1057,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1065,7 +1067,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1313,7 +1315,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1354,7 +1356,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1383,7 +1385,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1454,6 +1456,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1609,7 +1612,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1681,7 +1684,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1691,7 +1694,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1701,7 +1704,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1722,7 +1725,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1817,7 +1820,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1858,7 +1861,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1887,7 +1890,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1960,6 +1963,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2182,7 +2186,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2254,7 +2258,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2264,7 +2268,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2274,7 +2278,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2295,7 +2299,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -106,7 +106,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -136,7 +136,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -195,6 +195,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -344,7 +345,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -417,7 +418,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -427,7 +428,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -436,7 +437,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -631,7 +632,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -672,7 +673,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -701,7 +702,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -772,6 +773,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -927,7 +929,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -999,7 +1001,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1009,7 +1011,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1019,7 +1021,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1238,7 +1240,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1279,7 +1281,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1308,7 +1310,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1382,6 +1384,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1539,7 +1542,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1611,7 +1614,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1621,7 +1624,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1631,7 +1634,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1652,7 +1655,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1725,7 +1728,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1766,7 +1769,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1795,7 +1798,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1828,6 +1831,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1901,6 +1905,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2141,7 +2146,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2213,7 +2218,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2223,7 +2228,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2233,7 +2238,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2254,7 +2259,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2351,6 +2356,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -65,7 +65,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -256,7 +256,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -273,7 +273,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -531,7 +531,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -548,7 +548,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -753,7 +753,7 @@
|
|||
text-align: left;
|
||||
color: rgb(10, 42, 77);
|
||||
background-color: white;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 0.1rem;
|
||||
overflow: hidden;
|
||||
|
@ -770,7 +770,7 @@
|
|||
border-radius: 5px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 1px 1px 1px #999;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -118,7 +118,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -148,7 +148,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -219,6 +219,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -350,7 +351,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -423,7 +424,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -433,7 +434,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -442,7 +443,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -625,7 +626,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -666,7 +667,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -695,7 +696,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -766,6 +767,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -919,7 +921,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -991,7 +993,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1001,7 +1003,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1011,7 +1013,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1232,7 +1234,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1273,7 +1275,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1302,7 +1304,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1373,6 +1375,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1528,7 +1531,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1600,7 +1603,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1610,7 +1613,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1620,7 +1623,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1641,7 +1644,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1702,7 +1705,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1743,7 +1746,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1772,7 +1775,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1844,6 +1847,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2066,7 +2070,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2138,7 +2142,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2148,7 +2152,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2158,7 +2162,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2179,7 +2183,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -109,7 +109,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -139,7 +139,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -210,6 +210,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -341,7 +342,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -414,7 +415,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -424,7 +425,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -433,7 +434,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -616,7 +617,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -657,7 +658,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -686,7 +687,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -757,6 +758,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -910,7 +912,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -982,7 +984,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -992,7 +994,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1002,7 +1004,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1223,7 +1225,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1264,7 +1266,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1293,7 +1295,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1364,6 +1366,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1519,7 +1522,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1591,7 +1594,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1601,7 +1604,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1611,7 +1614,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1632,7 +1635,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1693,7 +1696,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1734,7 +1737,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1763,7 +1766,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1832,6 +1835,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2054,7 +2058,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2126,7 +2130,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2136,7 +2140,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2146,7 +2150,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2167,7 +2171,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -127,7 +127,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -156,7 +156,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -216,6 +216,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -365,7 +366,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -438,7 +439,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -448,7 +449,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -457,7 +458,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -693,7 +694,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -734,7 +735,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -762,7 +763,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -835,6 +836,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -990,7 +992,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1062,7 +1064,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1072,7 +1074,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1082,7 +1084,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1342,7 +1344,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1383,7 +1385,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1411,7 +1413,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1487,6 +1489,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1644,7 +1647,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1716,7 +1719,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1726,7 +1729,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1736,7 +1739,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1757,7 +1760,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1870,7 +1873,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1911,7 +1914,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1939,7 +1942,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1974,6 +1977,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2048,6 +2052,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2288,7 +2293,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2360,7 +2365,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2370,7 +2375,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2380,7 +2385,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2401,7 +2406,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2488,6 +2493,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -125,7 +125,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -154,7 +154,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -214,6 +214,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -363,7 +364,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -436,7 +437,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -446,7 +447,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -455,7 +456,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -692,7 +693,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -733,7 +734,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -761,7 +762,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -834,6 +835,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -989,7 +991,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1061,7 +1063,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1071,7 +1073,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1081,7 +1083,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1342,7 +1344,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1383,7 +1385,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1411,7 +1413,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1487,6 +1489,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1644,7 +1647,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1716,7 +1719,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1726,7 +1729,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1736,7 +1739,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1757,7 +1760,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1871,7 +1874,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1912,7 +1915,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1940,7 +1943,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1975,6 +1978,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2049,6 +2053,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2289,7 +2294,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2361,7 +2366,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2371,7 +2376,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2381,7 +2386,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2402,7 +2407,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2498,6 +2503,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -120,7 +120,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -161,7 +161,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -191,7 +191,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -248,6 +248,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -377,7 +378,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -450,7 +451,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -460,7 +461,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -469,7 +470,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -810,7 +811,7 @@
|
|||
font-size: medium;
|
||||
width: 100%;
|
||||
min-height: 100px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -822,7 +823,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -863,7 +864,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -904,7 +905,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -935,7 +936,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1005,6 +1006,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1143,7 +1145,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1215,7 +1217,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1225,7 +1227,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1235,7 +1237,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1561,7 +1563,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -1572,7 +1574,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -1652,7 +1654,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1693,7 +1695,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1724,7 +1726,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1793,6 +1795,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1936,7 +1939,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2008,7 +2011,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2018,7 +2021,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2028,7 +2031,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2049,7 +2052,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2235,7 +2238,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -2246,7 +2249,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -2325,7 +2328,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2366,7 +2369,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2397,7 +2400,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2480,6 +2483,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2732,7 +2736,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2804,7 +2808,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2814,7 +2818,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2824,7 +2828,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2845,7 +2849,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2960,12 +2964,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -3081,7 +3087,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -3092,7 +3098,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -3165,6 +3171,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
text-align: left;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -130,7 +130,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -171,7 +171,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -200,7 +200,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -260,6 +260,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -409,7 +410,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -482,7 +483,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -492,7 +493,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -501,7 +502,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -730,7 +731,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -771,7 +772,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -799,7 +800,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -872,6 +873,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1027,7 +1029,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1099,7 +1101,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1109,7 +1111,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1119,7 +1121,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1372,7 +1374,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1413,7 +1415,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1441,7 +1443,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1517,6 +1519,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1674,7 +1677,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1746,7 +1749,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1756,7 +1759,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1766,7 +1769,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1787,7 +1790,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1893,7 +1896,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1934,7 +1937,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1962,7 +1965,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1997,6 +2000,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2071,6 +2075,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2312,7 +2317,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2384,7 +2389,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2394,7 +2399,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2404,7 +2409,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2425,7 +2430,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2506,6 +2511,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.div_row_create_account {
|
||||
|
@ -96,7 +96,7 @@
|
|||
background-color: white;
|
||||
color: #3b3e40;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: right;
|
||||
cursor: pointer;
|
||||
padding-left: 0;
|
||||
|
@ -142,7 +142,7 @@
|
|||
text-align: left;
|
||||
background-color: white;
|
||||
font-size: small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.connect {
|
||||
|
@ -310,7 +310,7 @@
|
|||
//background-color: #104277;
|
||||
color: white;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-bottom: 1rem;
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
|
@ -375,7 +375,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -389,7 +389,7 @@
|
|||
.texte_area {
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -399,7 +399,7 @@
|
|||
.texte_area_adress {
|
||||
width: 96% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -409,7 +409,7 @@
|
|||
.texte_area_passwd {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
height: 1.8rem !important;
|
||||
}
|
||||
|
@ -524,7 +524,7 @@
|
|||
background-color: white;
|
||||
color: #3b3e40;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: right;
|
||||
cursor: pointer;
|
||||
padding-left: 0;
|
||||
|
@ -549,7 +549,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.div_centre_social {
|
||||
|
@ -564,13 +564,13 @@
|
|||
text-align: left;
|
||||
background-color: white;
|
||||
font-size: large;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.mb-3 {
|
||||
font-size: small !important;
|
||||
margin: 0.2rem !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
button:hover {
|
||||
|
@ -917,7 +917,7 @@
|
|||
//background-color: #104277;
|
||||
color: white;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-bottom: 1rem;
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
|
@ -982,7 +982,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -996,7 +996,7 @@
|
|||
.texte_area {
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -1006,7 +1006,7 @@
|
|||
.texte_area_adress {
|
||||
width: 96% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -1016,7 +1016,7 @@
|
|||
.texte_area_passwd {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
height: 1.8rem !important;
|
||||
}
|
||||
|
@ -1091,7 +1091,7 @@
|
|||
.mb-3 {
|
||||
font-size: medium !important;
|
||||
margin: 0.2rem !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
/*style grande tablettes & Pc portable */
|
||||
|
@ -1132,7 +1132,7 @@
|
|||
background-color: white;
|
||||
color: #3b3e40;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: right;
|
||||
cursor: pointer;
|
||||
padding-left: 0;
|
||||
|
@ -1157,7 +1157,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.div_centre_social {
|
||||
|
@ -1172,7 +1172,7 @@
|
|||
text-align: left;
|
||||
background-color: white;
|
||||
font-size: x-large;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
button:hover {
|
||||
|
@ -1499,7 +1499,7 @@
|
|||
//background-color: #104277;
|
||||
color: white;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-bottom: 1rem;
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
|
@ -1564,7 +1564,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1578,7 +1578,7 @@
|
|||
.texte_area {
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -1588,7 +1588,7 @@
|
|||
.texte_area_adress {
|
||||
width: 96% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -1598,7 +1598,7 @@
|
|||
.texte_area_passwd {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
height: 1.8rem !important;
|
||||
}
|
||||
|
@ -1704,7 +1704,7 @@
|
|||
background-color: #104277;
|
||||
color: white;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.div_centre_social {
|
||||
|
@ -1719,7 +1719,7 @@
|
|||
text-align: left;
|
||||
background-color: white;
|
||||
font-size: x-large;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
button:hover {
|
||||
|
@ -1791,7 +1791,7 @@
|
|||
background-color: white;
|
||||
color: #3b3e40;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: right;
|
||||
cursor: pointer;
|
||||
padding-left: 0;
|
||||
|
@ -2098,7 +2098,7 @@
|
|||
//background-color: #104277;
|
||||
color: white;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-bottom: 1rem;
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
|
@ -2163,7 +2163,7 @@
|
|||
}
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2177,7 +2177,7 @@
|
|||
.texte_area {
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -2187,7 +2187,7 @@
|
|||
.texte_area_adress {
|
||||
width: 96% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0rem !important;
|
||||
margin-right: 0.4rem !important;
|
||||
margin-top: 0.4rem !important;
|
||||
|
@ -2197,7 +2197,7 @@
|
|||
.texte_area_passwd {
|
||||
width: 95% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
height: 1.8rem !important;
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
text-align: left;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -136,7 +136,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -177,7 +177,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -206,7 +206,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -266,6 +266,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -415,7 +416,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -488,7 +489,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -498,7 +499,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -507,7 +508,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -736,7 +737,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -777,7 +778,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -805,7 +806,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -878,6 +879,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1033,7 +1035,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1105,7 +1107,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1115,7 +1117,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1125,7 +1127,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1378,7 +1380,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1419,7 +1421,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1447,7 +1449,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1523,6 +1525,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1680,7 +1683,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1752,7 +1755,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1762,7 +1765,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1772,7 +1775,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1793,7 +1796,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1899,7 +1902,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1940,7 +1943,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1968,7 +1971,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2003,6 +2006,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2077,6 +2081,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2317,7 +2322,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2389,7 +2394,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2399,7 +2404,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2409,7 +2414,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2430,7 +2435,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2511,6 +2516,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
text-align: left;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -137,7 +137,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -178,7 +178,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -207,7 +207,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -267,6 +267,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -416,7 +417,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -489,7 +490,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -499,7 +500,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -508,7 +509,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -745,7 +746,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -786,7 +787,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -814,7 +815,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -887,6 +888,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1042,7 +1044,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1114,7 +1116,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1124,7 +1126,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1134,7 +1136,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1395,7 +1397,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1436,7 +1438,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1464,7 +1466,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1540,6 +1542,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1697,7 +1700,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1769,7 +1772,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1779,7 +1782,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1789,7 +1792,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1810,7 +1813,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1924,7 +1927,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1965,7 +1968,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1993,7 +1996,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2028,6 +2031,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2102,6 +2106,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2341,7 +2346,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2413,7 +2418,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2423,7 +2428,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2433,7 +2438,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2454,7 +2459,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2544,12 +2549,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 20%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 79%;
|
||||
float: right;
|
||||
text-align: left;
|
||||
|
@ -2567,6 +2574,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 2px;
|
||||
float: left;
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
text-align: left;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -130,7 +130,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -171,7 +171,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -200,7 +200,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -260,6 +260,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -409,7 +410,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -482,7 +483,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -492,7 +493,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -501,7 +502,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -730,7 +731,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -771,7 +772,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -799,7 +800,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -872,6 +873,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1027,7 +1029,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1099,7 +1101,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1109,7 +1111,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1119,7 +1121,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1372,7 +1374,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1413,7 +1415,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1441,7 +1443,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1517,6 +1519,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1674,7 +1677,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1746,7 +1749,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1756,7 +1759,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1766,7 +1769,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1787,7 +1790,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1893,7 +1896,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1934,7 +1937,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1962,7 +1965,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1997,6 +2000,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2071,6 +2075,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2312,7 +2317,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2384,7 +2389,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2394,7 +2399,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2404,7 +2409,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2425,7 +2430,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2506,6 +2511,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -108,7 +108,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -137,7 +137,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -196,6 +196,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -323,7 +324,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -396,7 +397,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -406,7 +407,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -415,7 +416,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -617,7 +618,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -658,7 +659,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -686,7 +687,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -757,6 +758,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -891,7 +893,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -963,7 +965,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -973,7 +975,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -983,7 +985,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1226,7 +1228,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1267,7 +1269,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1295,7 +1297,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1366,6 +1368,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1500,7 +1503,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1572,7 +1575,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1582,7 +1585,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1592,7 +1595,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1613,7 +1616,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1691,7 +1694,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1732,7 +1735,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1760,7 +1763,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1845,6 +1848,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2066,7 +2070,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2138,7 +2142,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2148,7 +2152,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2158,7 +2162,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2179,7 +2183,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -155,7 +155,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -185,7 +185,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -242,6 +242,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -371,7 +372,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -444,7 +445,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -454,7 +455,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -463,7 +464,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -740,7 +741,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -781,7 +782,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -812,7 +813,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -882,6 +883,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1020,7 +1022,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1092,7 +1094,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1102,7 +1104,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1112,7 +1114,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1423,7 +1425,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1464,7 +1466,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1495,7 +1497,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1564,6 +1566,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1707,7 +1710,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1779,7 +1782,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1789,7 +1792,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1799,7 +1802,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1820,7 +1823,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1993,7 +1996,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2034,7 +2037,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2065,7 +2068,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2148,6 +2151,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2399,7 +2403,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2471,7 +2475,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2481,7 +2485,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2491,7 +2495,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2512,7 +2516,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2627,12 +2631,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2741,6 +2747,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -120,7 +120,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -161,7 +161,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -191,7 +191,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -248,6 +248,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -377,7 +378,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -450,7 +451,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -460,7 +461,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -469,7 +470,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -810,7 +811,7 @@
|
|||
font-size: medium;
|
||||
width: 100%;
|
||||
min-height: 100px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -822,7 +823,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -863,7 +864,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -904,7 +905,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -935,7 +936,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1005,6 +1006,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1143,7 +1145,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1215,7 +1217,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1225,7 +1227,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1235,7 +1237,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1561,7 +1563,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -1572,7 +1574,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -1652,7 +1654,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1693,7 +1695,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1724,7 +1726,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1793,6 +1795,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1936,7 +1939,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2008,7 +2011,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2018,7 +2021,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2028,7 +2031,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2049,7 +2052,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2235,7 +2238,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -2246,7 +2249,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -2325,7 +2328,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2366,7 +2369,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2397,7 +2400,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2480,6 +2483,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2732,7 +2736,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2804,7 +2808,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2814,7 +2818,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2824,7 +2828,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2845,7 +2849,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2960,12 +2964,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -3085,7 +3091,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -3096,7 +3102,7 @@
|
|||
min-height: 100px;
|
||||
font-size: medium;
|
||||
width: 100%;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
@ -3164,6 +3170,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -106,7 +106,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -136,7 +136,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -195,6 +195,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -344,7 +345,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -417,7 +418,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -427,7 +428,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -436,7 +437,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -631,7 +632,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -672,7 +673,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -701,7 +702,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -772,6 +773,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -927,7 +929,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -999,7 +1001,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1009,7 +1011,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1019,7 +1021,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1238,7 +1240,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1279,7 +1281,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1308,7 +1310,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1382,6 +1384,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1539,7 +1542,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1611,7 +1614,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1621,7 +1624,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1631,7 +1634,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1652,7 +1655,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1725,7 +1728,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1766,7 +1769,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1795,7 +1798,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1828,6 +1831,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1901,6 +1905,7 @@
|
|||
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2141,7 +2146,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2213,7 +2218,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2223,7 +2228,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2233,7 +2238,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2254,7 +2259,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2356,6 +2361,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -157,7 +157,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -187,7 +187,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -244,6 +244,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -373,7 +374,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -446,7 +447,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -456,7 +457,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -465,7 +466,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -742,7 +743,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -783,7 +784,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -814,7 +815,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -884,6 +885,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1022,7 +1024,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1094,7 +1096,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1104,7 +1106,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1114,7 +1116,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1425,7 +1427,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1466,7 +1468,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1497,7 +1499,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1566,6 +1568,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1708,7 +1711,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1780,7 +1783,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1790,7 +1793,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1800,7 +1803,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1821,7 +1824,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1994,7 +1997,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2035,7 +2038,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2066,7 +2069,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2149,6 +2152,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2401,7 +2405,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2473,7 +2477,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2483,7 +2487,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2493,7 +2497,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2514,7 +2518,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2629,12 +2633,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2720,6 +2726,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -157,7 +157,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -187,7 +187,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -244,6 +244,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -373,7 +374,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -446,7 +447,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -456,7 +457,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -465,7 +466,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -742,7 +743,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -783,7 +784,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -814,7 +815,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -884,6 +885,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1022,7 +1024,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1094,7 +1096,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1104,7 +1106,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1114,7 +1116,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1425,7 +1427,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1466,7 +1468,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1497,7 +1499,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1566,6 +1568,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1708,7 +1711,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1780,7 +1783,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1790,7 +1793,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1800,7 +1803,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1821,7 +1824,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1994,7 +1997,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2035,7 +2038,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2066,7 +2069,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2149,6 +2152,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2401,7 +2405,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2473,7 +2477,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2483,7 +2487,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2493,7 +2497,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2514,7 +2518,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2629,12 +2633,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2720,6 +2726,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -157,7 +157,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -187,7 +187,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -244,6 +244,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -373,7 +374,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -446,7 +447,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -456,7 +457,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -465,7 +466,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -742,7 +743,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -783,7 +784,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -814,7 +815,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -884,6 +885,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1022,7 +1024,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1094,7 +1096,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1104,7 +1106,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1114,7 +1116,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1425,7 +1427,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1466,7 +1468,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1497,7 +1499,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1566,6 +1568,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1708,7 +1711,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1780,7 +1783,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1790,7 +1793,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1800,7 +1803,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1821,7 +1824,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1994,7 +1997,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2035,7 +2038,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2066,7 +2069,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2149,6 +2152,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2401,7 +2405,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2473,7 +2477,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2483,7 +2487,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2493,7 +2497,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2514,7 +2518,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2629,12 +2633,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2729,6 +2735,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -157,7 +157,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -187,7 +187,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -244,6 +244,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -373,7 +374,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -446,7 +447,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -456,7 +457,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -465,7 +466,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -742,7 +743,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -783,7 +784,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -814,7 +815,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -884,6 +885,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1022,7 +1024,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1094,7 +1096,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1104,7 +1106,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1114,7 +1116,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1425,7 +1427,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1466,7 +1468,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1497,7 +1499,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1566,6 +1568,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1708,7 +1711,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1780,7 +1783,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1790,7 +1793,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1800,7 +1803,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1821,7 +1824,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1994,7 +1997,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2035,7 +2038,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2066,7 +2069,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2149,6 +2152,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2401,7 +2405,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2473,7 +2477,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2483,7 +2487,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2493,7 +2497,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2514,7 +2518,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2629,12 +2633,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2720,6 +2726,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
width: 100%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
|
@ -67,7 +67,7 @@
|
|||
border-radius: 0.5rem;
|
||||
float: left;
|
||||
text-align: center;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -205,7 +205,7 @@
|
|||
position: relative;
|
||||
margin-top: 0.5rem !important;
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: left;
|
||||
height: 3rem !important;
|
||||
|
@ -391,7 +391,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -2590,7 +2590,7 @@
|
|||
margin-left: 0rem;
|
||||
overflow-y: hidden;
|
||||
white-space: nowrap;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -2871,7 +2871,7 @@
|
|||
margin-right: 0%;
|
||||
overflow-y: scroll;
|
||||
height: 800px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
padding-right: 5px;
|
||||
margin-right: 5px;
|
||||
|
@ -2899,7 +2899,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -3293,7 +3293,7 @@
|
|||
}
|
||||
|
||||
.bienvenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large;
|
||||
color: white;
|
||||
}
|
||||
|
@ -5876,7 +5876,7 @@
|
|||
width: 100%;
|
||||
float: right;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -5979,7 +5979,7 @@
|
|||
margin-right: 0%;
|
||||
overflow-y: scroll;
|
||||
height: 800px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
padding-right: 5px;
|
||||
margin-right: 5px;
|
||||
|
@ -6171,7 +6171,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -6562,7 +6562,7 @@
|
|||
}
|
||||
|
||||
.bienvenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large;
|
||||
color: white;
|
||||
}
|
||||
|
@ -9135,7 +9135,7 @@
|
|||
width: 100%;
|
||||
float: right;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -9238,7 +9238,7 @@
|
|||
margin-right: 0%;
|
||||
overflow-y: scroll;
|
||||
height: 800px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-right: 5px;
|
||||
margin-right: 5px;
|
||||
|
@ -9461,7 +9461,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -9849,7 +9849,7 @@
|
|||
}
|
||||
|
||||
.bienvenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: x-large;
|
||||
color: white;
|
||||
}
|
||||
|
@ -12448,7 +12448,7 @@
|
|||
width: 100%;
|
||||
float: right;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -12550,7 +12550,7 @@
|
|||
margin-right: 0%;
|
||||
overflow-y: scroll;
|
||||
height: 800px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-right: 5px;
|
||||
margin-right: 5px;
|
||||
|
@ -12774,7 +12774,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -13144,7 +13144,7 @@
|
|||
}
|
||||
|
||||
.bienvenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: x-large;
|
||||
color: white;
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
width: 100%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
|
@ -72,7 +72,7 @@
|
|||
border-radius: 0.5rem;
|
||||
float: left;
|
||||
text-align: center;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -210,7 +210,7 @@
|
|||
position: relative;
|
||||
margin-top: 0.5rem !important;
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
text-align: left;
|
||||
height: 3rem !important;
|
||||
|
@ -396,7 +396,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -2611,7 +2611,7 @@
|
|||
margin-left: 0rem;
|
||||
overflow-y: hidden;
|
||||
white-space: nowrap;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -2892,7 +2892,7 @@
|
|||
margin-right: 0%;
|
||||
overflow-y: scroll;
|
||||
height: 800px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
padding-right: 5px;
|
||||
margin-right: 5px;
|
||||
|
@ -2920,7 +2920,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -3314,7 +3314,7 @@
|
|||
}
|
||||
|
||||
.bienvenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large;
|
||||
color: white;
|
||||
}
|
||||
|
@ -5905,7 +5905,7 @@
|
|||
width: 100%;
|
||||
float: right;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -6008,7 +6008,7 @@
|
|||
margin-right: 0%;
|
||||
overflow-y: scroll;
|
||||
height: 800px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
padding-right: 5px;
|
||||
margin-right: 5px;
|
||||
|
@ -6200,7 +6200,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -6591,7 +6591,7 @@
|
|||
}
|
||||
|
||||
.bienvenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large;
|
||||
color: white;
|
||||
}
|
||||
|
@ -9153,7 +9153,7 @@
|
|||
width: 100%;
|
||||
float: right;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -9256,7 +9256,7 @@
|
|||
margin-right: 0%;
|
||||
overflow-y: scroll;
|
||||
height: 800px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-right: 5px;
|
||||
margin-right: 5px;
|
||||
|
@ -9479,7 +9479,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -9867,7 +9867,7 @@
|
|||
}
|
||||
|
||||
.bienvenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: x-large;
|
||||
color: white;
|
||||
}
|
||||
|
@ -12454,7 +12454,7 @@
|
|||
width: 100%;
|
||||
float: right;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -12556,7 +12556,7 @@
|
|||
margin-right: 0%;
|
||||
overflow-y: scroll;
|
||||
height: 800px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-right: 5px;
|
||||
margin-right: 5px;
|
||||
|
@ -12780,7 +12780,7 @@
|
|||
border: none;
|
||||
background: transparent;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
border: 0.1rem solid black;
|
||||
border-radius: 0.3rem !important;
|
||||
width: 65%;
|
||||
|
@ -13150,7 +13150,7 @@
|
|||
}
|
||||
|
||||
.bienvenu {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: x-large;
|
||||
color: white;
|
||||
}
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -149,7 +149,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -179,7 +179,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -236,6 +236,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -363,7 +364,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -436,7 +437,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -446,7 +447,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -455,7 +456,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -717,7 +718,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -758,7 +759,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -789,7 +790,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -859,6 +860,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -995,7 +997,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1067,7 +1069,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1077,7 +1079,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1087,7 +1089,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1382,7 +1384,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1423,7 +1425,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1454,7 +1456,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1523,6 +1525,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1663,7 +1666,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1735,7 +1738,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1745,7 +1748,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1755,7 +1758,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1776,7 +1779,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1933,7 +1936,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1974,7 +1977,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -2005,7 +2008,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -2074,6 +2077,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2292,7 +2296,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2364,7 +2368,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2374,7 +2378,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2384,7 +2388,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2405,7 +2409,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2510,12 +2514,14 @@
|
|||
|
||||
|
||||
.div_row_gauche_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 30%;
|
||||
float: left;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.div_row_droite_dialog_session {
|
||||
font-family: 'DM Sans';
|
||||
width: 69%;
|
||||
float: right;
|
||||
}
|
||||
|
@ -2615,6 +2621,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
width: 80%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -326,7 +326,7 @@
|
|||
width: 48%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.6rem;
|
||||
}
|
||||
|
||||
|
@ -337,7 +337,7 @@
|
|||
width: 48%;
|
||||
border-radius: 1rem;
|
||||
text-align: right;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 0.6rem;
|
||||
}
|
||||
|
||||
|
@ -693,7 +693,7 @@
|
|||
width: 60%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
}
|
||||
|
||||
|
@ -981,7 +981,7 @@
|
|||
width: 30%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -992,7 +992,7 @@
|
|||
width: 30%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-right: 2rem;
|
||||
}
|
||||
|
@ -1385,7 +1385,7 @@
|
|||
width: 69%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: large;
|
||||
}
|
||||
|
||||
|
@ -1672,7 +1672,7 @@
|
|||
width: 30%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -1683,7 +1683,7 @@
|
|||
width: 30%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-right: 2rem;
|
||||
}
|
||||
|
@ -2077,7 +2077,7 @@
|
|||
width: 69%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: x-large;
|
||||
}
|
||||
|
||||
|
@ -2432,7 +2432,7 @@
|
|||
width: 30%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
|
@ -2443,7 +2443,7 @@
|
|||
width: 30%;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-right: 2rem;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
.btn-success {
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 50%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -52,7 +52,7 @@
|
|||
width: 98%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -67,7 +67,7 @@
|
|||
width: 49.8%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -133,7 +133,7 @@
|
|||
}
|
||||
|
||||
.art_criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -188,7 +188,7 @@
|
|||
width: 100%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 15px;
|
||||
background: #FFF;
|
||||
|
@ -207,7 +207,7 @@
|
|||
|
||||
.btn-success {
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 50%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -252,7 +252,7 @@
|
|||
width: 98%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -268,7 +268,7 @@
|
|||
width: 49.8%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -334,7 +334,7 @@
|
|||
}
|
||||
|
||||
.art_criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -389,7 +389,7 @@
|
|||
width: 100%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 25px;
|
||||
padding: 5px;
|
||||
|
@ -407,7 +407,7 @@
|
|||
|
||||
.btn-success {
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 40%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -452,7 +452,7 @@
|
|||
width: 100%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 25px;
|
||||
padding: 5px;
|
||||
|
@ -467,7 +467,7 @@
|
|||
width: 49%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -482,7 +482,7 @@
|
|||
width: 49.8%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -548,7 +548,7 @@
|
|||
}
|
||||
|
||||
.art_criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -605,7 +605,7 @@
|
|||
|
||||
.btn-success {
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
//width: 40%!important;
|
||||
padding: 0.2rem !important;
|
||||
}
|
||||
|
@ -650,7 +650,7 @@
|
|||
width: 100%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 25px;
|
||||
padding: 5px;
|
||||
|
@ -666,7 +666,7 @@
|
|||
width: 49%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -681,7 +681,7 @@
|
|||
width: 49.8%;
|
||||
border-radius: 5px;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
|
@ -753,7 +753,7 @@
|
|||
}
|
||||
|
||||
.art_criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
|
|
@ -321,7 +321,7 @@
|
|||
|
||||
.criteres {
|
||||
font-size: 0.69rem;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
//font-size: smaller;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -389,7 +389,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: small;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -468,7 +468,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -800,7 +800,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.70rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -810,7 +810,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -889,7 +889,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -1411,7 +1411,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: 0.8rem;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -1421,7 +1421,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -1500,7 +1500,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -2026,7 +2026,7 @@
|
|||
}
|
||||
|
||||
.criteres {
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
color: #104277;
|
||||
font-size: small;
|
||||
padding-bottom: 0rem;
|
||||
|
@ -2038,7 +2038,7 @@
|
|||
.h1_forma {
|
||||
color: #ff4411;
|
||||
font-size: medium;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
}
|
||||
|
||||
.p_forma {
|
||||
|
@ -2117,7 +2117,7 @@
|
|||
.training_price {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
@ -2155,7 +2155,7 @@
|
|||
.aaatraining_price_barre {
|
||||
color: #619e31;
|
||||
font-size: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
text-align: left;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 0.6rem !important;
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -121,7 +121,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -151,7 +151,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -222,6 +222,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -344,7 +345,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -417,7 +418,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -427,7 +428,7 @@
|
|||
float: left;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
}
|
||||
|
@ -436,7 +437,7 @@
|
|||
float: left !important;
|
||||
width: 100% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -651,7 +652,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -692,7 +693,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -721,7 +722,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -792,6 +793,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 50%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -935,7 +937,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1007,7 +1009,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1017,7 +1019,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1027,7 +1029,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1280,7 +1282,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1321,7 +1323,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1350,7 +1352,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1421,6 +1423,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -1589,7 +1592,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -1661,7 +1664,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -1671,7 +1674,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1681,7 +1684,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -1702,7 +1705,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1804,7 +1807,7 @@
|
|||
|
||||
.titre1_aide_finance {
|
||||
margin-top: 1rem;
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -1845,7 +1848,7 @@
|
|||
text-align: center;
|
||||
border: 1px solid #9cf;
|
||||
color: #3b3e40;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.1rem;
|
||||
font-weight: normal;
|
||||
|
@ -1874,7 +1877,7 @@
|
|||
border: 0px;
|
||||
color: #3b3e40;
|
||||
padding-left: 5px;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
border-radius: 10px;
|
||||
border: 1px solid;
|
||||
|
@ -1943,6 +1946,7 @@
|
|||
}
|
||||
|
||||
.session_caract {
|
||||
font-family: DM Sans;
|
||||
width: 33%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
@ -2177,7 +2181,7 @@
|
|||
border-width: 0.01rem;
|
||||
border-radius: 1rem;
|
||||
text-align: left;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: small;
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
|
@ -2249,7 +2253,7 @@
|
|||
float: left;
|
||||
width: 47% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 1.5rem !important;
|
||||
|
@ -2259,7 +2263,7 @@
|
|||
float: left;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2269,7 +2273,7 @@
|
|||
float: left !important;
|
||||
width: 40% !important;
|
||||
font-size: x-small !important;
|
||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
margin: 0.4rem !important;
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 2px !important;
|
||||
|
@ -2290,7 +2294,7 @@
|
|||
|
||||
|
||||
.titre1 {
|
||||
font-family: "Quicksand", "Signika", sans-serif;
|
||||
font-family: "DM Sans", "sans-serif";
|
||||
font-size: medium;
|
||||
text-align: center;
|
||||
margin-bottom: 0.8rem;
|
||||
|
@ -2402,6 +2406,7 @@
|
|||
}
|
||||
|
||||
.session_caract_Dialog {
|
||||
font-family: 'DM Sans';
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
float: left;
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue