/* ── CSS VARIABLES ── */
:root {
--eda-blue: #0057A8;
--eda-blue-dk: #003d7a;
--eda-blue-lt: #e6f0fb;
--eda-accent: #E8A020;
--eda-dark: #111827;
--eda-mid: #374151;
--eda-soft: #6B7280;
--eda-line: #E5E7EB;
--eda-bg: #F9FAFB;
--eda-white: #ffffff;
}
/* ── PAGE LAYOUT ── */
.eda-page-wrap {
font-size: 18px;
line-height: 1.7;
color: var(--eda-dark);
background: var(--eda-bg);
max-width: 1120px;
margin: 36px auto;
padding: 0 24px;
display: grid;
grid-template-columns: 1fr 320px;
gap: 36px;
align-items: start;
}
/* ── MAIN COLUMN ── */
.eda-main h1 {
font-size: 40px;
font-weight: 700;
line-height: 1.25;
color: var(--eda-dark);
margin-bottom: 10px;
margin-top:3%
}
.eda-tags {
display: flex;
flex-wrap: wrap;
gap: 7px;
margin-bottom: 28px;
}
.eda-tag {
font-size: 14px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 4px 11px;
border-radius: 3px;
}
.eda-tag-blue { background: var(--eda-blue-lt); color: var(--eda-blue); }
.eda-tag-gold { background: #fef3e2; color: #b07a10; }
.eda-tag-green { background: #e6f7ee; color: #1a7a45; }
.eda-tag-grey { background: #f3f4f6; color: var(--eda-soft); }
/* SECTION */
.eda-section {
padding-bottom: 28px;
margin-bottom: 28px;
border-bottom: 1px solid var(--eda-line);
}
.eda-section:last-child { border-bottom: none; }
.eda-section h2 {
font-size: 10.5px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--eda-blue);
margin-bottom: 14px;
}
.eda-section p { color: var(--eda-mid); line-height: 1.75; margin-bottom: 8px; }
/* OBJECTIVE ITEMS */
.eda-obj-item {
display: flex;
gap: 12px;
align-items: flex-start;
padding: 10px 0;
border-bottom: 1px solid var(--eda-line);
}
.eda-obj-item:last-child { border-bottom: none; }
.eda-obj-dot {
width: 22px; height: 22px;
border-radius: 50%;
background: var(--eda-blue);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
margin-top: 3px;
}
.eda-obj-dot svg { width: 11px; height: 11px; stroke: white; stroke-width: 2.5; fill: none; }
.eda-obj-item span { color: var(--eda-mid); }
/* PREREQ PILLS */
.eda-pill {
display: inline-block;
background: var(--eda-bg);
border: 1px solid var(--eda-line);
border-radius: 20px;
padding: 5px 13px;
font-size: 13px;
color: var(--eda-mid);
margin: 3px 3px 3px 0;
}
/* CONFIG GRID */
.eda-config-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.eda-config-card {
background: var(--eda-white);
border: 1px solid var(--eda-line);
border-top: 3px solid var(--eda-blue);
border-radius: 5px;
padding: 16px;
}
.eda-config-card-title {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--eda-dark);
margin-bottom: 8px;
}
.eda-config-card ul { padding-left: 16px; color: var(--eda-mid); font-size: 13.5px; }
.eda-config-card li { margin-bottom: 4px; }
/* PROGRAMME ACCORDION */
.eda-prog-module {
background: var(--eda-white);
border: 1px solid var(--eda-line);
border-left: 3px solid var(--eda-blue);
border-radius: 5px;
margin-bottom: 8px;
overflow: hidden;
}
.eda-prog-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 13px 16px;
cursor: pointer;
user-select: none;
gap: 12px;
transition: background 0.15s;
}
.eda-prog-header:hover { background: var(--eda-bg); }
.eda-prog-title {
font-size: 13.5px;
font-weight: 600;
color: var(--eda-dark);
}
.eda-prog-icon {
width: 20px; height: 20px;
color: var(--eda-soft);
flex-shrink: 0;
transition: transform 0.2s;
}
.eda-prog-module.open .eda-prog-icon { transform: rotate(45deg); }
.eda-prog-body {
display: none;
padding: 4px 16px 14px;
border-top: 1px solid var(--eda-line);
}
.eda-prog-module.open .eda-prog-body { display: block; }
.eda-prog-body ul { padding-left: 18px; margin-top: 10px; color: var(--eda-mid); font-size: 13.5px; }
.eda-prog-body li { margin-bottom: 5px; }
/* PEDAGOGY */
.eda-peda-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}
.eda-peda-card {
background: var(--eda-white);
border: 1px solid var(--eda-line);
border-radius: 5px;
padding: 16px;
display: flex;
flex-direction: column;
gap: 6px;
}
.eda-peda-icon {
width: 32px; height: 32px;
background: var(--eda-blue-lt);
border-radius: 6px;
display: flex; align-items: center; justify-content: center;
margin-bottom: 4px;
}
.eda-peda-icon svg { width: 18px; height: 18px; stroke: var(--eda-blue); stroke-width: 1.8; fill: none; }
.eda-peda-title {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--eda-dark);
}
.eda-peda-card p { font-size: 13px; color: var(--eda-mid); }
/* FORMATEUR */
.eda-formateur-card {
background: var(--eda-white);
border: 1px solid var(--eda-line);
border-radius: 6px;
padding: 20px;
display: flex;
gap: 16px;
}
.eda-formateur-av {
width: 50px; height: 50px;
border-radius: 50%;
background: var(--eda-blue);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
font-size: 18px;
font-weight: 800;
color: white;
margin-top: 2px;
}
.eda-formateur-name { font-weight: 700; font-size: 18px; margin-bottom: 3px; }
.eda-formateur-role { font-size: 12px; color: var(--eda-soft); margin-bottom: 8px; }
.eda-cert-badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: #fef3e2;
border: 1px solid #f5d89a;
border-radius: 4px;
padding: 4px 10px;
font-size: 11.5px;
color: #9a6800;
font-weight: 600;
}
/* SANCTION */
.eda-sanction-list { display: flex; flex-direction: column; gap: 8px; }
.eda-sanction-item {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13.5px;
color: var(--eda-mid);
}
.eda-s-check {
width: 18px; height: 18px;
border-radius: 3px;
background: var(--eda-blue-lt);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
margin-top: 3px;
}
.eda-s-check svg { width: 10px; height: 10px; stroke: var(--eda-blue); stroke-width: 2.5; fill: none; }
/* RELATED */
.eda-related-list { display: flex; flex-direction: column; gap: 8px; }
.eda-related-item {
background: var(--eda-white);
border: 1px solid var(--eda-line);
border-radius: 5px;
padding: 13px 15px;
text-decoration: none;
display: flex;
align-items: center;
gap: 12px;
transition: border-color 0.15s, box-shadow 0.15s;
}
.eda-related-item:hover { border-color: var(--eda-blue); box-shadow: 0 2px 10px rgba(0,87,168,0.08); }
.eda-related-arrow { color: var(--eda-blue); font-size: 16px; margin-left: auto; flex-shrink: 0; }
.eda-related-item-title { font-size: 13px; font-weight: 500; color: var(--eda-dark); }
.eda-related-item-meta { font-size: 11.5px; color: var(--eda-soft); margin-top: 2px; }
/* ── SIDEBAR ── */
.eda-sidebar { position: sticky; top: 24px; }
.eda-sidebar-card {
background: var(--eda-white);
border: 1px solid var(--eda-line);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 24px rgba(0,0,0,0.07);
margin-bottom: 20px;
}
.eda-sidebar-head {
background: var(--eda-blue);
padding: 22px 22px 18px;
position: relative;
overflow: hidden;
}
.eda-sidebar-head::before {
content: '';
position: absolute;
right: -30px; top: -30px;
width: 120px; height: 120px;
border-radius: 50%;
background: rgba(255,255,255,0.06);
}
.eda-s-ref {
font-size: 10px;
color: rgba(255,255,255,0.55);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 6px;
}
.eda-s-price {
font-size: 32px;
font-weight: 800;
color: white;
line-height: 1;
margin-bottom: 4px;
}
.eda-s-price sub { font-size: 14px; font-family: 'Outfit', sans-serif; font-weight: 400; opacity: 0.7; }
.eda-s-note { font-size: 12px; color: rgba(255,255,255,0.6); }
.eda-s-badge {
display: inline-block;
background: var(--eda-accent);
color: var(--eda-dark);
font-size: 10px;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
padding: 3px 8px;
border-radius: 3px;
margin-top: 10px;
}
.eda-sidebar-body { padding: 20px; }
.eda-info-row {
display: flex;
align-items: flex-start;
gap: 11px;
padding: 10px 0;
border-bottom: 1px solid var(--eda-line);
font-size: 13.5px;
}
.eda-info-row:last-of-type { border-bottom: none; }
.eda-i-icon {
width: 18px; height: 18px;
stroke: var(--eda-blue);
stroke-width: 1.8;
fill: none;
flex-shrink: 0;
margin-top: 3px;
}
.eda-i-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--eda-soft); margin-bottom: 2px; }
.eda-i-value { font-weight: 500; color: var(--eda-dark); font-size: 13.5px; }
.eda-btn-p {
display: block; width: 100%;
background: var(--eda-blue); color: white;
text-align: center; padding: 14px;
border-radius: 5px;
font-weight: 700; font-size: 13.5px;
letter-spacing: 0.03em; text-decoration: none;
border: none; cursor: pointer;
transition: background 0.15s; margin-top: 16px;
}
.eda-btn-p:hover { background: var(--eda-blue-dk); }
.eda-btn-s {
display: block; width: 100%;
background: var(--eda-white); color: var(--eda-dark);
text-align: center; padding: 11px;
border-radius: 5px; font-size: 13px; font-weight: 500;
text-decoration: none; border: 1px solid var(--eda-line);
cursor: pointer; transition: border-color 0.15s, color 0.15s; margin-top: 8px;
}
.eda-btn-s:hover { border-color: var(--eda-blue); color: var(--eda-blue); }
/* SESSION TABLE */
.eda-session-table { width: 100%; border-collapse: collapse; font-size: 12.5px; margin-top: 10px; }
.eda-session-table th {
text-align: left; font-size: 10px; text-transform: uppercase;
letter-spacing: 0.06em; color: var(--eda-soft);
padding: 6px 8px; border-bottom: 2px solid var(--eda-line);
}
.eda-session-table td {
padding: 8px 8px; border-bottom: 1px solid var(--eda-line);
color: var(--eda-mid); vertical-align: middle;
}
.eda-session-table tr:last-child td { border-bottom: none; }
.eda-badge { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 3px; }
.eda-badge-p { background: #e3f2fd; color: #1a5cb8; }
.eda-badge-d { background: #e6f7ee; color: #1a7a45; }
.eda-sidebar-section-title {
font-size: 10px; font-weight: 700;
letter-spacing: 0.1em; text-transform: uppercase; color: var(--eda-soft); margin-bottom: 12px;
}
/* PARTNER BLOCK */
.eda-partner-block {
background: var(--eda-white); border: 1px solid var(--eda-line);
border-radius: 6px; padding: 14px 16px;
display: flex; align-items: center; gap: 12px;
}
.eda-partner-logo {
width: 48px; height: 48px; background: var(--eda-blue);
border-radius: 6px; display: flex; align-items: center; justify-content: center;
flex-shrink: 0; font-size: 11px;
font-weight: 800; color: white; text-align: center; line-height: 1.2;
}
.eda-partner-text { font-size: 12px; color: var(--eda-soft); line-height: 1.5; }
.eda-partner-text strong { color: var(--eda-dark); font-size: 13px; display: block; }
@media (max-width: 840px) {
.eda-page-wrap { grid-template-columns: 1fr; }
.eda-sidebar { position: static; }
.eda-config-grid, .eda-peda-grid { grid-template-columns: 1fr; }
}
Altium Designer – PCB – niveau Essentiel
Formation PCB
Centre officiel Altium
Présentiel & Distanciel
3 jours · 2 400 € HT
Objectif
L'objectif est de pouvoir concevoir une carte électronique d'une complexité moyenne avec Altium Designer, en maîtrisant les étapes clés du projet PCB : de la saisie de schéma à la génération des fichiers de fabrication.
Public concerné
Techniciens et ingénieurs en électronique
Chefs de projet en conception électronique
Tout professionnel souhaitant maîtriser la conception PCB avec Altium Designer
Prérequis
La formation se déroule en français. Connaissances requises :
Connaissances générales en électronique
Terminologie technique en anglais
Bases de conception d'une carte électronique
Configuration requise
Logicielle
Altium Designer 25
Licence temporaire fournie
Matérielle (locaux EDA)
Ordinateur récent + 2e écran (1920×1080)
Windows 10/11 Pro 64 bits
Minimum 8 Go de RAM
Programme
Création et gestion des bibliothèques
Comprendre les différents types de bibliothèques
Créer symboles et empreintes de composants
Accéder aux bases de données et gérer les composants
Saisie de schémas
Maîtriser l'interface et les raccourcis clavier
Règles de conception et de vérification
Structurer un projet (plat ou hiérarchique)
Exécuter les premières vérifications DRC
Générer les premiers rapports
Placement et routage PCB
Passage du schéma au PCB, synchronisation
Paramétrage des caractéristiques du circuit imprimé
Règles de conception (schématique et PCB)
Placement des composants et routage des signaux
Routage interactif, paires différentielles, multi-signaux, guidé, auto-routeur
Vérification des règles de design (DRC)
Interaction avec la conception mécanique via modèles 3D
Génération des fichiers de sortie
Paramétrer et générer les fichiers de sortie : documentation, fabrication, assemblage
Présentation de Camtastic, l'outil de FAO intégré
Moyens pédagogiques
Présentiel & Distanciel
Présentation par vidéo-projecteur et partage d'écran du formateur.
Manuel de formation
Manuel remis à jour avec la dernière version d'Altium Designer (théorie + exercices).
Supports & licence
Clé USB pour la sauvegarde et licence temporaire Altium Designer fournie.
Encadrement
F
Formateur EDA Expert
Ingénieur électronique · Expert en conception et routage PCB
★ Agrée et certifié par Altium
Sanction & modalités de suivi
Évaluation théorique sous forme de QCM
Fiches de présence émargées
Enquête de satisfaction
Attestation avec évaluation des acquis + certificat Altium selon résultat du QCM
1 mois de support technique offert à l'issue de la formation
Autres formations Altium Designer
Altium Designer – PCB – niveau Avancé
Routage avancé · Signaux rapides · Règles complexes
›
Altium Designer – Validation comportementale avec simulation SPICE
Simulation circuit · Analyse temporelle et fréquentielle
›
Altium Designer – Gestion des données avec Altium 365 Pro
Collaboration · Gestion de versions · Cloud PCB
›
Traitement du signal avec un FPGA
DSP · Architecture FPGA · Implémentation
›
Formation inter-entreprise
2 400 € HT
par personne · inscription ≥ 2 jours avant session
Centre officiel Altium
Prochaine session
31 mars – 02 avril 2026
Durée
3 jours · 9h00 – 17h00
Lieu
Locaux EDA Expert1 av. Paul Vaillant Couturier, 94110 Arcueil
Format
Présentiel · À distance · Sur site
S'inscrire / Demander un devis
📅 Nous contacter
⬇ Télécharger le programme
Sessions 2026
DatesFormat
31/03 – 02/04Présentiel
19/05 – 21/05Présentiel
02/06 – 04/06Distanciel
07/07 – 09/07Présentiel
08/09 – 10/09Distanciel
17/11 – 19/11Présentiel
Formation disponible en intra-entreprise, sur site ou à distance.
Nous contacter.
AltiumCert.
Centre de formation officiel
Agrée et certifié par Altium. Certificat délivré selon résultat du QCM.
/* Accordion — close all modules except the first on load */
document.querySelectorAll('.eda-prog-module').forEach((m, i) => {
if (i > 0) m.classList.remove('open');
});
