2023-04-10 11:25:46 +02:00
|
|
|
div.les_parcours {
|
|
|
|
display: flex;
|
|
|
|
margin-left: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.les_parcours>div {
|
|
|
|
font-size: 130%;
|
|
|
|
margin-top: 12px;
|
|
|
|
margin-left: 8px;
|
|
|
|
background-color: #09c;
|
|
|
|
opacity: 0.7;
|
|
|
|
border-radius: 4px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 8px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.les_parcours>div.focus {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2023-04-11 23:56:50 +02:00
|
|
|
div.les_parcours>div.link {
|
|
|
|
background-color: var(--sco-color-background);
|
|
|
|
color: navy;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
div.les_parcours>div.parc>a:hover {
|
2023-04-10 11:25:46 +02:00
|
|
|
color: #ccc;
|
|
|
|
}
|
|
|
|
|
2023-04-11 23:56:50 +02:00
|
|
|
div.les_parcours>div.parc>a,
|
|
|
|
div.les_parcours>div.parc>a:visited {
|
2023-04-10 11:25:46 +02:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2023-04-07 17:10:17 +02:00
|
|
|
.parcour_formation {
|
2023-04-10 11:25:46 +02:00
|
|
|
margin-left: 16px;
|
|
|
|
margin-right: 16px;
|
2023-05-13 18:35:10 +02:00
|
|
|
margin-bottom: 16px;
|
2023-04-10 11:25:46 +02:00
|
|
|
min-width: 1200px;
|
|
|
|
max-width: 1600px;
|
2023-04-07 17:10:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.titre_parcours {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 120%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.competence {
|
|
|
|
/* display: grid; */
|
|
|
|
margin-top: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.titre_competence {
|
|
|
|
/* grid-column-start: 1;
|
|
|
|
grid-column-end: span -1;
|
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-start: 2; */
|
|
|
|
border-bottom: 6px solid white;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 110%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.niveaux {
|
|
|
|
display: grid;
|
2023-04-10 11:25:46 +02:00
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
--arrow-width: 24px;
|
2023-04-07 17:10:17 +02:00
|
|
|
}
|
|
|
|
|
2023-04-10 11:25:46 +02:00
|
|
|
/* Flèches vers la droite */
|
|
|
|
.niveaux>div {
|
|
|
|
padding: 8px 16px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2023-04-07 17:10:17 +02:00
|
|
|
|
2023-04-10 11:25:46 +02:00
|
|
|
.niveaux>div:not(:first-child) {
|
|
|
|
padding-left: calc(var(--arrow-width) + 8px);
|
|
|
|
}
|
|
|
|
|
2023-08-26 11:03:55 +02:00
|
|
|
.niveaux>div:not(:last-child)::before {
|
2023-04-10 11:25:46 +02:00
|
|
|
content: "";
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: calc(100% - 1px);
|
|
|
|
bottom: 0;
|
|
|
|
width: var(--arrow-width);
|
|
|
|
background: var(--color);
|
|
|
|
clip-path: polygon(0 0, 100% 50%, 0 100%);
|
|
|
|
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.niveau {
|
2023-04-07 17:10:17 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.niveau>div {
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.titre_niveau {
|
|
|
|
grid-column: 1 / span 2;
|
|
|
|
grid-row: 1 / 2;
|
2023-04-10 11:25:46 +02:00
|
|
|
padding-bottom: 6px;
|
|
|
|
}
|
|
|
|
|
2023-04-11 13:48:57 +02:00
|
|
|
span.parcs {
|
2023-04-10 11:25:46 +02:00
|
|
|
margin-left: 12px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2023-04-11 13:48:57 +02:00
|
|
|
span.parc {
|
2023-04-10 11:25:46 +02:00
|
|
|
font-size: 75%;
|
|
|
|
font-weight: bold;
|
|
|
|
/* color: rgb(92, 87, 255); */
|
|
|
|
color: white;
|
2023-05-13 18:35:10 +02:00
|
|
|
margin-right: 8px;
|
2023-04-10 11:25:46 +02:00
|
|
|
padding: 4px;
|
|
|
|
background-color: #09c;
|
|
|
|
border-radius: 4px;
|
|
|
|
text-align: center;
|
2023-04-07 17:10:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.ue {
|
|
|
|
grid-row-start: 2;
|
|
|
|
/* border: 1px dashed blue; */
|
|
|
|
}
|
|
|
|
|
|
|
|
div.ue.impair {
|
|
|
|
grid-column: 1 / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.ue.pair {
|
|
|
|
grid-column: 2 / 3;
|
|
|
|
}
|
|
|
|
|
2023-04-10 11:25:46 +02:00
|
|
|
.ue select {
|
|
|
|
color: black;
|
2023-04-07 17:10:17 +02:00
|
|
|
}
|
|
|
|
|
2023-07-16 19:59:45 +02:00
|
|
|
div.rcue {
|
|
|
|
grid-column: 1 / span 2;
|
|
|
|
}
|
|
|
|
|
2023-04-13 08:42:18 +02:00
|
|
|
/* ne fonctionne pas
|
|
|
|
option.non_associe {
|
|
|
|
background-color: yellow;
|
|
|
|
color: red;
|
|
|
|
} */
|
|
|
|
|
2023-04-10 11:25:46 +02:00
|
|
|
.links {
|
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 8px;
|
2023-07-16 19:59:45 +02:00
|
|
|
}
|
|
|
|
|
2023-07-16 21:57:42 +02:00
|
|
|
div.ue_validation_code {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
div.ue_validation_code div.code {
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
2023-07-16 19:59:45 +02:00
|
|
|
select.validation_rcue {
|
2023-07-20 17:27:41 +02:00
|
|
|
color: black;
|
2023-07-16 19:59:45 +02:00
|
|
|
display: inline-block;
|
|
|
|
margin-left: 32px;
|
|
|
|
}
|
2023-07-17 10:37:12 +02:00
|
|
|
div.recap_ects, div.link_edit {
|
2023-10-19 22:24:56 +02:00
|
|
|
margin-top: 8px;
|
2023-07-17 10:37:12 +02:00
|
|
|
margin-left: 16px;
|
|
|
|
margin-right: 16px;
|
|
|
|
margin-bottom: 16px;
|
2023-10-19 22:24:56 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
div.recap_ects {
|
|
|
|
background-color: var(--col-c3-2);
|
|
|
|
padding: 4px;
|
2023-07-17 10:37:12 +02:00
|
|
|
}
|
|
|
|
.link_edit a {
|
|
|
|
padding-right: 48px;
|
2023-10-19 22:24:56 +02:00
|
|
|
}
|