07/04/23 - 9h
parent
873d65f274
commit
dcfa8da660
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Launch Program",
|
||||||
|
"skipFiles": [
|
||||||
|
"<node_internals>/**"
|
||||||
|
],
|
||||||
|
"program": "${file}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -481,12 +481,23 @@ const AddClassManual = (props) => {
|
||||||
|
|
||||||
function RecordTraining(event) {
|
function RecordTraining(event) {
|
||||||
var code = document.getElementsByName("external_code")[0].value;
|
var code = document.getElementsByName("external_code")[0].value;
|
||||||
|
|
||||||
|
if (code.length < 1) {
|
||||||
|
alert(" Le Champ 'code' est obligatoire")
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var title = document.getElementsByName("title")[0].value;
|
var title = document.getElementsByName("title")[0].value;
|
||||||
if (String(title).length > title_limite) {
|
if (String(title).length > title_limite) {
|
||||||
alert(" Champ 'Titre', limite depassée !")
|
alert(" Champ 'Titre', limite depassée !")
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (title.length < 1) {
|
||||||
|
alert(" Le Champ 'Titre' est obligatoire")
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
var trainer = document.getElementsByName("trainer")[0].value;
|
var trainer = document.getElementsByName("trainer")[0].value;
|
||||||
var presentiel = document.getElementsByName("presentiel")[0].value;
|
var presentiel = document.getElementsByName("presentiel")[0].value;
|
||||||
|
@ -514,18 +525,22 @@ const AddClassManual = (props) => {
|
||||||
var objectif = "";
|
var objectif = "";
|
||||||
if (editorRef_objectif.current) {
|
if (editorRef_objectif.current) {
|
||||||
objectif = editorRef_objectif.current.getContent();
|
objectif = editorRef_objectif.current.getContent();
|
||||||
if( parse(objectif.replace(/(<([^>]+)>)/ig, '')).length > editorRef_objectif_limite){
|
if (parse(objectif.replace(/(<([^>]+)>)/ig, '')).length > editorRef_objectif_limite) {
|
||||||
alert(" Champ 'Objectif', limite depassée !")
|
alert(" Champ 'Objectif', limite depassée !")
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (objectif.length < 1) {
|
||||||
|
alert(" Le Champ 'Objectif' est obligatoire")
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var programme = "";
|
var programme = "";
|
||||||
if (editorRef_programme.current) {
|
if (editorRef_programme.current) {
|
||||||
programme = editorRef_programme.current.getContent();
|
programme = editorRef_programme.current.getContent();
|
||||||
|
|
||||||
if( parse(programme.replace(/(<([^>]+)>)/ig, '')).length > editorRef_programme_limite){
|
if (parse(programme.replace(/(<([^>]+)>)/ig, '')).length > editorRef_programme_limite) {
|
||||||
alert(" Champ 'Programme', limite depassée !")
|
alert(" Champ 'Programme', limite depassée !")
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -540,13 +555,16 @@ const AddClassManual = (props) => {
|
||||||
if (editorRef_description.current) {
|
if (editorRef_description.current) {
|
||||||
description = editorRef_description.current.getContent();
|
description = editorRef_description.current.getContent();
|
||||||
|
|
||||||
if( parse(description.replace(/(<([^>]+)>)/ig, '')).length > editorRef_description_limite){
|
if (parse(description.replace(/(<([^>]+)>)/ig, '')).length > editorRef_description_limite) {
|
||||||
alert(" Champ 'Description', limite depassée !")
|
alert(" Champ 'Description', limite depassée !")
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (description.length < 1) {
|
||||||
|
alert(" Le Champ 'Description' est obligatoire")
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var mots_cle = "";
|
var mots_cle = "";
|
||||||
if (editorRef_mots_cle.current) {
|
if (editorRef_mots_cle.current) {
|
||||||
|
@ -565,14 +583,14 @@ const AddClassManual = (props) => {
|
||||||
|
|
||||||
|
|
||||||
// Verification si il y a plus de 3 mot clés separés par des ";"
|
// Verification si il y a plus de 3 mot clés separés par des ";"
|
||||||
mots_cle = mots_cle.replace( /(<([^>]+)>)/ig, '');
|
mots_cle = mots_cle.replace(/(<([^>]+)>)/ig, '');
|
||||||
mots_cle = mots_cle.replace(" ", '');
|
mots_cle = mots_cle.replace(" ", '');
|
||||||
|
|
||||||
|
|
||||||
var local_mot_cle = "";
|
var local_mot_cle = "";
|
||||||
if( mots_cle.endsWith(";")){
|
if (mots_cle.endsWith(";")) {
|
||||||
local_mot_cle = mots_cle.substring(0, mots_cle.length-1);
|
local_mot_cle = mots_cle.substring(0, mots_cle.length - 1);
|
||||||
}else{
|
} else {
|
||||||
local_mot_cle = mots_cle;
|
local_mot_cle = mots_cle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -669,6 +687,18 @@ const AddClassManual = (props) => {
|
||||||
sendClassImage();
|
sendClassImage();
|
||||||
|
|
||||||
//alert(result['status'] + " -- " + myApiResponse + ' mess = ' + result['message']);
|
//alert(result['status'] + " -- " + myApiResponse + ' mess = ' + result['message']);
|
||||||
|
|
||||||
|
if(String(result['status']) === "true" ){
|
||||||
|
alert(" La formation a été correctement ajoutée. Vous allez être redirigé vers la liste des formations.");
|
||||||
|
history.push({
|
||||||
|
pathname: "/Partner/",
|
||||||
|
state: {
|
||||||
|
current_pack: props.currentpack, local_sub_menu: 'affichage', price: "",
|
||||||
|
period: "", new_pack: ""
|
||||||
|
}
|
||||||
|
});
|
||||||
|
window.location.reload();
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error('Error:', error);
|
console.error('Error:', error);
|
||||||
|
@ -1366,7 +1396,7 @@ const AddClassManual = (props) => {
|
||||||
|
|
||||||
<div className="training_text">
|
<div className="training_text">
|
||||||
<div className="plus_produit_desabled">
|
<div className="plus_produit_desabled">
|
||||||
<div className="titre_training_text"> Description (max 1000 caractères) </div>
|
<div className="titre_training_text"> Description * (max 1000 caractères) </div>
|
||||||
<Editor
|
<Editor
|
||||||
onInit={(evt, editor) => editorRef_description.current = editor}
|
onInit={(evt, editor) => editorRef_description.current = editor}
|
||||||
initialValue={field_description}
|
initialValue={field_description}
|
||||||
|
@ -1399,7 +1429,7 @@ const AddClassManual = (props) => {
|
||||||
|
|
||||||
<div className="training_text" >
|
<div className="training_text" >
|
||||||
<div className="plus_produit_desabled">
|
<div className="plus_produit_desabled">
|
||||||
<div className="titre_training_text"> Objectif (max 1000 caractères) </div>
|
<div className="titre_training_text"> Objectif* (max 1000 caractères) </div>
|
||||||
<Editor
|
<Editor
|
||||||
onInit={(evt, editor) => editorRef_objectif.current = editor}
|
onInit={(evt, editor) => editorRef_objectif.current = editor}
|
||||||
initialValue={field_objectif}
|
initialValue={field_objectif}
|
||||||
|
|
|
@ -2068,7 +2068,7 @@ const DisplayDetailClass_new_v2 = (props) => {
|
||||||
</div>}
|
</div>}
|
||||||
|
|
||||||
{String(ismetiermanaged) === "1" && <div className="">
|
{String(ismetiermanaged) === "1" && <div className="">
|
||||||
<img src={DetailTraining.img_url} alt="autre" className="" />
|
<img src={DetailTraining.img_url} alt="autre" className="" style={{"maxWidth":"100%"}} />
|
||||||
|
|
||||||
</div>}
|
</div>}
|
||||||
|
|
||||||
|
|
|
@ -901,6 +901,7 @@ function GestionAdministrative(props) {
|
||||||
var email = cellValues.row.email;
|
var email = cellValues.row.email;
|
||||||
//alert(" confirmation email = " + email);
|
//alert(" confirmation email = " + email);
|
||||||
SendInscriptionConfirmation(email);
|
SendInscriptionConfirmation(email);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const [SendInscriptionCancell_api, setSendInscriptionCancell_api] = useState();
|
const [SendInscriptionCancell_api, setSendInscriptionCancell_api] = useState();
|
||||||
|
@ -2214,6 +2215,59 @@ function GestionAdministrative(props) {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
const [Resend_LMS_Credentials_With_Email_api, setResend_LMS_Credentials_With_Email_api] = useState();
|
||||||
|
const [Resend_LMS_Credentials_With_Email_result, setResend_LMS_Credentials_With_Email_result] = useState();
|
||||||
|
const [Resend_LMS_Credentials_With_Email_message, setResend_LMS_Credentials_With_Email_message] = useState();
|
||||||
|
function Resend_LMS_Credentials_With_Email(myemail) {
|
||||||
|
|
||||||
|
clean_old_messages();
|
||||||
|
const formData = new FormData();
|
||||||
|
|
||||||
|
const stored_cookie = getCookie('tokenmysypart');
|
||||||
|
|
||||||
|
formData.append("token", stored_cookie);
|
||||||
|
formData.append("session_id", mysession);
|
||||||
|
|
||||||
|
var local_mail = myemail;
|
||||||
|
|
||||||
|
var validRegex = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/;
|
||||||
|
|
||||||
|
if (!local_mail.match(validRegex)) {
|
||||||
|
alert("L'adresse email est invalide. Impossible de renvoyer les identifiants");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
formData.append("email", local_mail);
|
||||||
|
formData.append("class_internal_url", internal_url);
|
||||||
|
//console.log("token = " + stored_cookie);
|
||||||
|
|
||||||
|
fetch(
|
||||||
|
process.env.REACT_APP_API_URL + "myclass/api/LMS_Credential_Sending_mail/",
|
||||||
|
{
|
||||||
|
method: 'POST',
|
||||||
|
body: formData,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then((response) => response.json())
|
||||||
|
.then((result) => {
|
||||||
|
if (String(result['status']) === String("true")) {
|
||||||
|
//console.log('Success:', result['message']);
|
||||||
|
setResend_LMS_Credentials_With_Email_result(result['message']);
|
||||||
|
setResend_LMS_Credentials_With_Email_api("true");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
setResend_LMS_Credentials_With_Email_message(result['message']);
|
||||||
|
setResend_LMS_Credentials_With_Email_api("false");
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error('Error:', error);
|
||||||
|
setResend_LMS_Credentials_With_Email_api("false");
|
||||||
|
});
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
// Cette fonction nettoye les messages avant nouvelle action
|
// Cette fonction nettoye les messages avant nouvelle action
|
||||||
function clean_old_messages() {
|
function clean_old_messages() {
|
||||||
setResend_LMS_Credentials_api();
|
setResend_LMS_Credentials_api();
|
||||||
|
@ -2528,9 +2582,9 @@ function GestionAdministrative(props) {
|
||||||
|
|
||||||
axios.post(myurl, form).then(res => {
|
axios.post(myurl, form).then(res => {
|
||||||
|
|
||||||
if (res.data.status != "false") {
|
if (String(res.data.status) === "true") {
|
||||||
//console.log(" In GetSpecificAttestation_Certif res.data.status = " + res.data.status);
|
console.log(" In GetSpecificAttestation_Certif res.data.status = " + res.data.status);
|
||||||
//console.log(" In GetSpecificAttestation_Certif res.data.message r_class = " + res.data.message);
|
console.log(" In GetSpecificAttestation_Certif res.data.message r_class = " + res.data.message);
|
||||||
setGetSpecificAttestation_Certif_api("true");
|
setGetSpecificAttestation_Certif_api("true");
|
||||||
setGetSpecificAttestation_Certif_result(res.data.message);
|
setGetSpecificAttestation_Certif_result(res.data.message);
|
||||||
|
|
||||||
|
@ -4272,7 +4326,7 @@ function GestionAdministrative(props) {
|
||||||
</div>
|
</div>
|
||||||
<div className="div_row_droite" style={{ "textAlign": 'right', 'marginRight': '15px' }}>
|
<div className="div_row_droite" style={{ "textAlign": 'right', 'marginRight': '15px' }}>
|
||||||
|
|
||||||
<Button variant="contained" className="bton_fermer" onClick={Resend_LMS_Credentials}> Renvoyer les Identifiants
|
<Button variant="contained" className="bton_fermer" onClick={Resend_LMS_Credentials}> (R)envoyer les Identifiants
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -26,7 +26,11 @@ import { IoCheckmarkCircleSharp } from "react-icons/io5";
|
||||||
import { FaHandPointRight } from "react-icons/fa";
|
import { FaHandPointRight } from "react-icons/fa";
|
||||||
import OrderConfirmation from "./OrderConfirmation";
|
import OrderConfirmation from "./OrderConfirmation";
|
||||||
import Pricing from "./Pricing";
|
import Pricing from "./Pricing";
|
||||||
|
import {FcHome, FcButtingIn, FcDepartment, FcBullish, FcAddDatabase, FcFolder,
|
||||||
|
FcList, FcGraduationCap, FcMultipleDevices, FcCurrencyExchange,
|
||||||
|
FcMoneyTransfer, FcFeedback, FcKey, FcVideoCall } from "react-icons/fc";
|
||||||
|
|
||||||
|
//import { FcHome} from "react-icons/fc";
|
||||||
|
|
||||||
const Partner = (props) => {
|
const Partner = (props) => {
|
||||||
const { commingmenu, commingpack } = useParams();
|
const { commingmenu, commingpack } = useParams();
|
||||||
|
@ -597,38 +601,38 @@ const Partner = (props) => {
|
||||||
<div className="nom_prenom"> {parntername && <b> {parntername} - {String(partnerPackService).toUpperCase()} ({parnternbformation})</b>}
|
<div className="nom_prenom"> {parntername && <b> {parntername} - {String(partnerPackService).toUpperCase()} ({parnternbformation})</b>}
|
||||||
{!parntername && <b> Partenaire </b>} </div>
|
{!parntername && <b> Partenaire </b>} </div>
|
||||||
<hr className="my_hr" />
|
<hr className="my_hr" />
|
||||||
{String(menu) !== "infopartner" && <div className="sousmenu" onClick={PersonnalData} > INFORMATIONS PERSONNELLES</div>}
|
{String(menu) !== "infopartner" && <div className="sousmenu" onClick={PersonnalData}> <FcHome className="icone_menu"/> DONNEES PERSONNELLES</div>}
|
||||||
{String(menu) === "infopartner" && <div className="sousmenu_selected" onClick={PersonnalData} > INFORMATIONS PERSONNELLES</div>}
|
{String(menu) === "infopartner" && <div className="sousmenu_selected" onClick={PersonnalData} > <FcHome className="icone_menu"/> DONNEES PERSONNELLES</div>}
|
||||||
<hr className="my_hr" />
|
<hr className="my_hr" />
|
||||||
|
|
||||||
{String(menu) !== "creation" && <div className="sousmenu" onClick={CreateTraining}> CREER FORMATION</div>}
|
{String(menu) !== "creation" && <div className="sousmenu" onClick={CreateTraining}> <FcAddDatabase className="icone_menu"/> CREER FORMATION</div>}
|
||||||
{String(menu) === "creation" && <div className="sousmenu_selected" onClick={CreateTraining}> CREER FORMATION</div>}
|
{String(menu) === "creation" && <div className="sousmenu_selected" onClick={CreateTraining}> <FcAddDatabase className="icone_menu"/> CREER FORMATION</div>}
|
||||||
<hr className="my_hr" />
|
<hr className="my_hr" />
|
||||||
|
|
||||||
{String(menu) !== "affichage" && <div className="sousmenu" onClick={DiplaytrainingList} > MES FORMATIONS</div>}
|
{String(menu) !== "affichage" && <div className="sousmenu" onClick={DiplaytrainingList} > <FcList className="icone_menu"/> MES FORMATIONS</div>}
|
||||||
{String(menu) === "affichage" && <div className="sousmenu_selected" onClick={DiplaytrainingList} > MES FORMATIONS</div>}
|
{String(menu) === "affichage" && <div className="sousmenu_selected" onClick={DiplaytrainingList} ><FcList className="icone_menu"/> MES FORMATIONS</div>}
|
||||||
<hr className="my_hr" />
|
<hr className="my_hr" />
|
||||||
|
|
||||||
{String(menu) !== "abonnement" && <div className="sousmenu" onClick={Abonnement_func} > ABONNEMENT </div>}
|
{String(menu) !== "abonnement" && <div className="sousmenu" onClick={Abonnement_func} > <FcKey className="icone_menu"/> ABONNEMENT </div>}
|
||||||
{String(menu) === "abonnement" && <div className="sousmenu_selected" onClick={Abonnement_func} > ABONNEMENT </div>}
|
{String(menu) === "abonnement" && <div className="sousmenu_selected" onClick={Abonnement_func} > <FcKey className="icone_menu"/> ABONNEMENT </div>}
|
||||||
<hr className="my_hr" />
|
<hr className="my_hr" />
|
||||||
|
|
||||||
|
|
||||||
{String(menu) !== "pricing" && <div className="sousmenu" onClick={pricing_func} > MES PRIX </div>}
|
{String(menu) !== "pricing" && <div className="sousmenu" onClick={pricing_func} ><FcCurrencyExchange className="icone_menu"/> MES PRIX </div>}
|
||||||
{String(menu) === "pricing" && <div className="sousmenu_selected" onClick={pricing_func} > MES PRIX </div>}
|
{String(menu) === "pricing" && <div className="sousmenu_selected" onClick={pricing_func} > <FcCurrencyExchange className="icone_menu"/>MES PRIX </div>}
|
||||||
<hr className="my_hr" />
|
<hr className="my_hr" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{String(menu) !== "facture" && <div className="sousmenu" onClick={DisplayFacure} > FACTURATION</div>}
|
{String(menu) !== "facture" && <div className="sousmenu" onClick={DisplayFacure} ><FcFeedback className="icone_menu"/> FACTURATION</div>}
|
||||||
{String(menu) === "facture" && <div className="sousmenu_selected" onClick={DisplayFacure} > FACTURATION</div>}
|
{String(menu) === "facture" && <div className="sousmenu_selected" onClick={DisplayFacure} > <FcFeedback className="icone_menu"/>FACTURATION</div>}
|
||||||
<hr className="my_hr" />
|
<hr className="my_hr" />
|
||||||
|
|
||||||
{String(menu) !== "statistique" && <div className="sousmenu" onClick={DisplayStat}> STATISTIQUES</div>}
|
{String(menu) !== "statistique" && <div className="sousmenu" onClick={DisplayStat}> <FcBullish className="icone_menu"/> STATISTIQUES</div>}
|
||||||
{String(menu) === "statistique" && <div className="sousmenu_selected" onClick={DisplayStat}> STATISTIQUES</div>}
|
{String(menu) === "statistique" && <div className="sousmenu_selected" onClick={DisplayStat}> <FcBullish className="icone_menu"/> STATISTIQUES</div>}
|
||||||
<hr className="my_hr" />
|
<hr className="my_hr" />
|
||||||
|
|
||||||
{String(has_partner_lms_url) === "1" && <div className="sousmenu" onClick={(e) => {
|
{String(has_partner_lms_url) === "1" && <div className="sousmenu_hebergement_lms" onClick={(e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
window.open(
|
window.open(
|
||||||
partner_lms_url,
|
partner_lms_url,
|
||||||
|
@ -636,7 +640,7 @@ const Partner = (props) => {
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
}}> Mon espace hebergement </div>}
|
}}> <FcVideoCall className="icone_menu"/> MON HEBERGEMENT </div> }
|
||||||
|
|
||||||
<hr className="my_hr" />
|
<hr className="my_hr" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1375,15 +1375,15 @@ const Recherche_new_v2 = () => {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if( String(my_local_user_connect) === "1"){
|
if (String(my_local_user_connect) === "1") {
|
||||||
form.append("token", stored_user);
|
form.append("token", stored_user);
|
||||||
form.append("connection_type", "user");
|
form.append("connection_type", "user");
|
||||||
}
|
}
|
||||||
else if ( String(my_local_part_connect) === "1"){
|
else if (String(my_local_part_connect) === "1") {
|
||||||
form.append("token", stored_part);
|
form.append("token", stored_part);
|
||||||
form.append("connection_type", "partner");
|
form.append("connection_type", "partner");
|
||||||
}
|
}
|
||||||
else{
|
else {
|
||||||
form.append("token", "");
|
form.append("token", "");
|
||||||
form.append("connection_type", "");
|
form.append("connection_type", "");
|
||||||
}
|
}
|
||||||
|
@ -1509,15 +1509,15 @@ const Recherche_new_v2 = () => {
|
||||||
my_local_part_connect = 1;
|
my_local_part_connect = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( String(my_local_user_connect) === "1"){
|
if (String(my_local_user_connect) === "1") {
|
||||||
form.append("token", stored_user);
|
form.append("token", stored_user);
|
||||||
form.append("connection_type", "user");
|
form.append("connection_type", "user");
|
||||||
}
|
}
|
||||||
else if ( String(my_local_part_connect) === "1"){
|
else if (String(my_local_part_connect) === "1") {
|
||||||
form.append("token", stored_part);
|
form.append("token", stored_part);
|
||||||
form.append("connection_type", "partner");
|
form.append("connection_type", "partner");
|
||||||
}
|
}
|
||||||
else{
|
else {
|
||||||
form.append("token", "");
|
form.append("token", "");
|
||||||
form.append("connection_type", "");
|
form.append("connection_type", "");
|
||||||
}
|
}
|
||||||
|
@ -2732,7 +2732,9 @@ const Recherche_new_v2 = () => {
|
||||||
|
|
||||||
> publier mes formations </nav>
|
> publier mes formations </nav>
|
||||||
|
|
||||||
<nav className="header_menu" onClick={handleBlogMenu}> Le blog </nav>
|
<nav className="header_menu cta_hebergement" onClick={publiecatalogue}
|
||||||
|
|
||||||
|
> Héberger mes formations </nav>
|
||||||
|
|
||||||
<nav className="header_menu" onClick={handleBlogMenu}> Le blog </nav>
|
<nav className="header_menu" onClick={handleBlogMenu}> Le blog </nav>
|
||||||
|
|
||||||
|
|
|
@ -1578,5 +1578,5 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-6hp17o-MuiList-root-MuiMenu-list{
|
.css-6hp17o-MuiList-root-MuiMenu-list{
|
||||||
width: 10%;
|
width: 50%;
|
||||||
}
|
}
|
|
@ -67,7 +67,7 @@
|
||||||
.sousmenu {
|
.sousmenu {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
color: #0c0101;
|
color: #0c0101;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -76,11 +76,10 @@
|
||||||
.sousmenu_selected {
|
.sousmenu_selected {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nom_prenom {
|
.nom_prenom {
|
||||||
|
@ -97,6 +96,7 @@
|
||||||
color: red;
|
color: red;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.okUpdateData {
|
.okUpdateData {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
color: green;
|
color: green;
|
||||||
|
@ -128,6 +128,7 @@
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
|
|
||||||
.containerBox {
|
.containerBox {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -135,7 +136,8 @@
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: xx-large; /*or whatever you want*/
|
font-size: xx-large;
|
||||||
|
/*or whatever you want*/
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -146,6 +148,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-box:before {
|
.text-box:before {
|
||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -354,6 +357,7 @@
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.accountsatatus {
|
.accountsatatus {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
color: black;
|
color: black;
|
||||||
|
@ -471,6 +475,19 @@
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sousmenu_hebergement_lms {
|
||||||
|
background: rebeccapurple;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
height: 3rem !important;
|
||||||
|
padding: 0.5rem;
|
||||||
|
text-align: left;
|
||||||
|
color: white;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.icone_menu {
|
||||||
|
width: 1rem;
|
||||||
|
height: 1rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 601px) and (max-width: 991px) {
|
@media only screen and (min-width: 601px) and (max-width: 991px) {
|
||||||
|
@ -481,6 +498,7 @@
|
||||||
color: red;
|
color: red;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.okUpdateData {
|
.okUpdateData {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
color: green;
|
color: green;
|
||||||
|
@ -515,7 +533,7 @@
|
||||||
.sousmenu {
|
.sousmenu {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
color: #c0c0c0;
|
color: #c0c0c0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -524,11 +542,10 @@
|
||||||
.sousmenu_selected {
|
.sousmenu_selected {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.sousmenu:hover {
|
.sousmenu:hover {
|
||||||
|
@ -781,6 +798,7 @@
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.my_hr {
|
.my_hr {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
@ -862,6 +880,7 @@
|
||||||
font-size: small;
|
font-size: small;
|
||||||
width: 10rem;
|
width: 10rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.firstConnexion_bton:hover {
|
.firstConnexion_bton:hover {
|
||||||
background: #81bc3a !important;
|
background: #81bc3a !important;
|
||||||
}
|
}
|
||||||
|
@ -906,6 +925,20 @@
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sousmenu_hebergement_lms {
|
||||||
|
background: rebeccapurple;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
height: 3rem !important;
|
||||||
|
padding: 0.5rem;
|
||||||
|
text-align: left;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icone_menu {
|
||||||
|
width: 1rem;
|
||||||
|
height: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 992px) and (max-width: 1199px) {
|
@media only screen and (min-width: 992px) and (max-width: 1199px) {
|
||||||
|
@ -913,15 +946,15 @@
|
||||||
float: right;
|
float: right;
|
||||||
//border: 1px solid black;
|
//border: 1px solid black;
|
||||||
border-width: 0.01rem;
|
border-width: 0.01rem;
|
||||||
width: 81%;
|
width: 80%;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 10px;
|
padding: 2px;
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: rgb(10, 42, 77);
|
color: rgb(10, 42, 77);
|
||||||
background-color: white;
|
background-color: white;
|
||||||
margin-right: 5px;
|
margin-right: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sousmenu_btn {
|
.sousmenu_btn {
|
||||||
|
@ -936,18 +969,17 @@
|
||||||
.sousmenu_selected {
|
.sousmenu_selected {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.sousmenu {
|
.sousmenu {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
color: #c0c0c0;
|
color: #c0c0c0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -992,6 +1024,7 @@
|
||||||
color: red;
|
color: red;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.okUpdateData {
|
.okUpdateData {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
color: green;
|
color: green;
|
||||||
|
@ -1002,15 +1035,15 @@
|
||||||
float: left;
|
float: left;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
border-width: 0.01rem;
|
border-width: 0.01rem;
|
||||||
width: 17%;
|
width: 19%;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 5px;
|
padding: 2px;
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
background-color: #104277;
|
background-color: #104277;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: white;
|
color: white;
|
||||||
margin-left: 5px;
|
margin-left: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.account_img {
|
.account_img {
|
||||||
|
@ -1032,7 +1065,7 @@
|
||||||
.sousmenu {
|
.sousmenu {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
color: #c0c0c0;
|
color: #c0c0c0;
|
||||||
}
|
}
|
||||||
|
@ -1040,13 +1073,13 @@
|
||||||
.sousmenu_selected {
|
.sousmenu_selected {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
letter-spacing: 1px;
|
//letter-spacing: 1px;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.sousmenu:hover {
|
.sousmenu:hover {
|
||||||
color: white;
|
color: white;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -1061,7 +1094,8 @@
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: xx-large; /*or whatever you want*/
|
font-size: xx-large;
|
||||||
|
/*or whatever you want*/
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1072,6 +1106,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-box:before {
|
.text-box:before {
|
||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -1256,6 +1291,7 @@
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.my_hr {
|
.my_hr {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
@ -1382,6 +1418,19 @@
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sousmenu_hebergement_lms {
|
||||||
|
background: rebeccapurple;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
height: 3rem !important;
|
||||||
|
padding: 0.5rem;
|
||||||
|
text-align: left;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.icone_menu {
|
||||||
|
width: 1rem;
|
||||||
|
height: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1200px) {
|
@media only screen and (min-width: 1200px) {
|
||||||
|
@ -1389,15 +1438,15 @@
|
||||||
float: right;
|
float: right;
|
||||||
//border: 1px solid black;
|
//border: 1px solid black;
|
||||||
border-width: 0.01rem;
|
border-width: 0.01rem;
|
||||||
width: 84%;
|
width: 83%;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 5px;
|
padding: 2px;
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: rgb(10, 42, 77);
|
color: rgb(10, 42, 77);
|
||||||
background-color: white;
|
background-color: white;
|
||||||
margin-right: 5px;
|
margin-right: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.img_user {
|
.img_user {
|
||||||
|
@ -1431,12 +1480,12 @@
|
||||||
float: left;
|
float: left;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
border-width: 0.01rem;
|
border-width: 0.01rem;
|
||||||
width: 14%;
|
width: 16%;
|
||||||
height: auto;
|
height: auto;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 10px;
|
padding: 5px;
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
margin-right: 0.5%;
|
margin-right: 5px;
|
||||||
background-color: #104277;
|
background-color: #104277;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: white;
|
color: white;
|
||||||
|
@ -1448,6 +1497,7 @@
|
||||||
color: red;
|
color: red;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.okUpdateData {
|
.okUpdateData {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
color: green;
|
color: green;
|
||||||
|
@ -1469,7 +1519,8 @@
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: xx-large; /*or whatever you want*/
|
font-size: xx-large;
|
||||||
|
/*or whatever you want*/
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1480,6 +1531,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-box:before {
|
.text-box:before {
|
||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -1553,7 +1605,7 @@
|
||||||
.sousmenu {
|
.sousmenu {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
color: #c0c0c0;
|
color: #c0c0c0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -1562,19 +1614,19 @@
|
||||||
.sousmenu_selected {
|
.sousmenu_selected {
|
||||||
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
font-family: "verdana", "Quicksand", "Signika", sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
margin-bottom: 0.8rem;
|
margin-bottom: 0.8rem;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
letter-spacing: 1px;
|
font-weight: 600;
|
||||||
font-weight: bold;
|
//letter-spacing: 1px;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.sousmenu:hover {
|
.sousmenu:hover {
|
||||||
color: white;
|
color: white;
|
||||||
font-weight: bold;
|
font-weight: 600;
|
||||||
padding-left: 0;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.div_row2 {
|
.div_row2 {
|
||||||
|
@ -1818,7 +1870,7 @@
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-1ptx2yq-MuiInputBase-root-MuiInput-root{
|
.css-1ptx2yq-MuiInputBase-root-MuiInput-root {
|
||||||
height: 3rem;
|
height: 3rem;
|
||||||
border: 1.5px solid #e0e0e0;
|
border: 1.5px solid #e0e0e0;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
@ -1826,7 +1878,7 @@
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-1x51dt5-MuiInputBase-input-MuiInput-input{
|
.css-1x51dt5-MuiInputBase-input-MuiInput-input {
|
||||||
background-color: rgb(236, 239, 241);
|
background-color: rgb(236, 239, 241);
|
||||||
height: 2.2rem;
|
height: 2.2rem;
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
|
@ -1852,6 +1904,24 @@
|
||||||
letter-spacing: 0.1rem;
|
letter-spacing: 0.1rem;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sousmenu_hebergement_lms {
|
||||||
|
background: rebeccapurple;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
height: 3rem !important;
|
||||||
|
padding: 0.5rem;
|
||||||
|
text-align: left;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.sousmenu_hebergement_lms:hover {
|
||||||
|
color: white;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icone_menu {
|
||||||
|
width: 2rem;
|
||||||
|
height: 1.5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1860,7 +1930,8 @@
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-1ptx2yq-MuiInputBase-root-MuiInput-root, .css-1vv4lmi{
|
.css-1ptx2yq-MuiInputBase-root-MuiInput-root,
|
||||||
|
.css-1vv4lmi {
|
||||||
height: 3rem;
|
height: 3rem;
|
||||||
border: 1.5px solid #e0e0e0;
|
border: 1.5px solid #e0e0e0;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
@ -1868,7 +1939,7 @@
|
||||||
padding-right: 2px;
|
padding-right: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-1x51dt5-MuiInputBase-input-MuiInput-input{
|
.css-1x51dt5-MuiInputBase-input-MuiInput-input {
|
||||||
background-color: rgb(236, 239, 241);
|
background-color: rgb(236, 239, 241);
|
||||||
height: 2.3rem;
|
height: 2.3rem;
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
|
@ -1878,12 +1949,13 @@
|
||||||
border-top-right-radius: 5px;
|
border-top-right-radius: 5px;
|
||||||
border-bottom-right-radius: 5px;
|
border-bottom-right-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mce-content-body{
|
.mce-content-body {
|
||||||
line-height: 1.2rem !important;
|
line-height: 1.2rem !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-9ddj71-MuiInputBase-root-MuiOutlinedInput-root{
|
.css-9ddj71-MuiInputBase-root-MuiOutlinedInput-root {
|
||||||
height: 3rem !important;
|
height: 3rem !important;
|
||||||
}
|
}
|
|
@ -3144,7 +3144,7 @@
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
gap: 10px;
|
gap: 3px;
|
||||||
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
//width: 843px;
|
//width: 843px;
|
||||||
|
@ -3365,6 +3365,8 @@
|
||||||
flex: none;
|
flex: none;
|
||||||
order: 0;
|
order: 0;
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 12px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3394,7 +3396,8 @@
|
||||||
flex: none;
|
flex: none;
|
||||||
order: 0;
|
order: 0;
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rectangle_8 {
|
.rectangle_8 {
|
||||||
|
@ -5142,17 +5145,18 @@
|
||||||
.forma_et_tuto_mobile {
|
.forma_et_tuto_mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.cta_publication{
|
|
||||||
|
.cta_publication {
|
||||||
/* Auto layout */
|
/* Auto layout */
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 5px 5px;
|
padding: 2px 2px;
|
||||||
gap: 10px;
|
gap: 5px;
|
||||||
|
|
||||||
width: 134px;
|
width: 120px;
|
||||||
height: 56px;
|
height: 56px;
|
||||||
|
|
||||||
/* Deep Blue */
|
/* Deep Blue */
|
||||||
|
@ -5167,6 +5171,37 @@
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: white;
|
color: white;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cta_hebergement {
|
||||||
|
/* Auto layout */
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 2px 2px;
|
||||||
|
gap: 5px;
|
||||||
|
|
||||||
|
width: 120px;
|
||||||
|
height: 56px;
|
||||||
|
|
||||||
|
/* Deep Blue */
|
||||||
|
|
||||||
|
background: rebeccapurple;
|
||||||
|
border-radius: 8px;
|
||||||
|
|
||||||
|
/* Inside auto layout */
|
||||||
|
|
||||||
|
flex: none;
|
||||||
|
order: 1;
|
||||||
|
flex-grow: 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8028,17 +8063,17 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cta_publication{
|
.cta_publication {
|
||||||
/* Auto layout */
|
/* Auto layout */
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 5px 5px;
|
padding: 2px 2px;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
|
|
||||||
width: 154px;
|
width: 130px;
|
||||||
height: 56px;
|
height: 56px;
|
||||||
|
|
||||||
/* Deep Blue */
|
/* Deep Blue */
|
||||||
|
@ -8053,7 +8088,41 @@
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: white;
|
color: white;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.cta_hebergement {
|
||||||
|
/* Auto layout */
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 5px 5px;
|
||||||
|
gap: 10px;
|
||||||
|
|
||||||
|
width: 130px;
|
||||||
|
height: 56px;
|
||||||
|
|
||||||
|
/* Deep Blue */
|
||||||
|
|
||||||
|
background: rebeccapurple;
|
||||||
|
border-radius: 8px;
|
||||||
|
|
||||||
|
/* Inside auto layout */
|
||||||
|
|
||||||
|
flex: none;
|
||||||
|
order: 1;
|
||||||
|
flex-grow: 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1201px) and (max-width: 1919px) {
|
@media only screen and (min-width: 1201px) and (max-width: 1919px) {
|
||||||
|
@ -10921,7 +10990,8 @@
|
||||||
.forma_et_tuto_mobile {
|
.forma_et_tuto_mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.cta_publication{
|
|
||||||
|
.cta_publication {
|
||||||
/* Auto layout */
|
/* Auto layout */
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -10946,8 +11016,38 @@
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: white;
|
color: white;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cta_hebergement {
|
||||||
|
/* Auto layout */
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 5px 5px;
|
||||||
|
gap: 10px;
|
||||||
|
|
||||||
|
width: 154px;
|
||||||
|
height: 56px;
|
||||||
|
|
||||||
|
/* Deep Blue */
|
||||||
|
|
||||||
|
background: rebeccapurple;
|
||||||
|
border-radius: 8px;
|
||||||
|
|
||||||
|
/* Inside auto layout */
|
||||||
|
|
||||||
|
flex: none;
|
||||||
|
order: 1;
|
||||||
|
flex-grow: 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1920px) {
|
@media only screen and (min-width: 1920px) {
|
||||||
|
@ -13823,7 +13923,8 @@
|
||||||
.forma_et_tuto_mobile {
|
.forma_et_tuto_mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.cta_publication{
|
|
||||||
|
.cta_publication {
|
||||||
/* Auto layout */
|
/* Auto layout */
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -13848,6 +13949,37 @@
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: white;
|
color: white;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cta_hebergement {
|
||||||
|
/* Auto layout */
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 5px 5px;
|
||||||
|
gap: 10px;
|
||||||
|
|
||||||
|
width: 154px;
|
||||||
|
height: 56px;
|
||||||
|
|
||||||
|
/* Deep Blue */
|
||||||
|
|
||||||
|
background: rebeccapurple;
|
||||||
|
border-radius: 8px;
|
||||||
|
|
||||||
|
/* Inside auto layout */
|
||||||
|
|
||||||
|
flex: none;
|
||||||
|
order: 1;
|
||||||
|
flex-grow: 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: white;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue