77 lines
1.2 KiB
CSS
77 lines
1.2 KiB
CSS
/**
|
|
* Styles pour la page de profil intervenant
|
|
*/
|
|
|
|
.crvi-intervenant-profile {
|
|
min-height: 60vh;
|
|
}
|
|
|
|
.form-control[readonly] {
|
|
background-color: #e9ecef;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.langues-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.badge-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.badge-container .badge {
|
|
font-size: 0.875rem;
|
|
padding: 0.5rem 0.75rem;
|
|
}
|
|
|
|
.indisponibilites-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.indisponibilites-list li {
|
|
padding: 0.75rem;
|
|
margin-bottom: 0.5rem;
|
|
background-color: #f8f9fa;
|
|
border-left: 4px solid #ffc107;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.indisponibilite-item {
|
|
padding: 0.75rem;
|
|
margin-bottom: 0.5rem;
|
|
background-color: #f8f9fa;
|
|
border-left: 4px solid #ffc107;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: start;
|
|
}
|
|
|
|
.indisponibilite-item .btn-remove {
|
|
color: #dc3545;
|
|
border: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
padding: 0.25rem 0.5rem;
|
|
}
|
|
|
|
.indisponibilite-item .btn-remove:hover {
|
|
color: #bb2d3b;
|
|
}
|
|
|
|
.input-group .btn {
|
|
border-left: 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.col-lg-8 {
|
|
padding: 0 1rem;
|
|
}
|
|
}
|
|
|