2023-01-17 01:05:48 +01:00
|
|
|
/* Affichage cursus BUT étudiant (sur sa fiche) */
|
|
|
|
|
|
|
|
|
|
|
|
.cursus_but {
|
|
|
|
margin-left: 32px;
|
|
|
|
display: inline-grid;
|
|
|
|
grid-template-columns: repeat(4, auto);
|
|
|
|
gap: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cursus_but>* {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding-top: 0px;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 0px;
|
|
|
|
background: #FFF;
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cursus_but>div.cb_head {
|
|
|
|
background: rgb(242, 242, 238);
|
|
|
|
border: none;
|
|
|
|
border-radius: 0px;
|
|
|
|
border-bottom: 1px solid gray;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cb_titre_competence {
|
|
|
|
background: #09c !important;
|
|
|
|
color: #FFF;
|
|
|
|
padding: 8px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.code_rcue {
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
position: relative;
|
2023-06-18 09:37:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.code_jury {
|
|
|
|
padding-right: 4px;
|
|
|
|
padding-left: 4px;
|
|
|
|
width: 64px;
|
2023-01-17 01:05:48 +01:00
|
|
|
}
|