Eva
This commit is contained in:
@@ -743,6 +743,15 @@ body {
|
||||
.content-card { border-radius: 8px; margin: 8px 0 16px 0; /* 8px en haut, 16px en bas */ }
|
||||
.header-content { padding: 0 16px; }
|
||||
.user-info { display: none; }
|
||||
|
||||
.accordion-header, .accordion-header i, .accordion-header span {
|
||||
font-size: 1.8rem !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
|
||||
.accordion-title {
|
||||
font-size: 0.9rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Écrans larges : mêmes insets pour nav-tabs et content-area */
|
||||
@@ -856,4 +865,62 @@ li i { margin-right:10px; color:#007bff; }
|
||||
|
||||
.sub-item strong {
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
|
||||
.accordion-section {
|
||||
margin-bottom: 2px;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 5px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.accordion-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 12px 15px;
|
||||
background-color: #f1f5fc;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
font-size: 1.1rem;
|
||||
transition: background-color 0.3s;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.accordion-header:hover {
|
||||
background-color: #e9ecef;
|
||||
}
|
||||
|
||||
.accordion-header.active {
|
||||
background-color: #e2e6ea;
|
||||
}
|
||||
|
||||
.accordion-header i:first-child {
|
||||
margin-right: 10px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.accordion-title {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.accordion-icon {
|
||||
margin-left: auto;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.accordion-header.active .accordion-icon {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.accordion-content {
|
||||
display: none;
|
||||
padding: 2px;
|
||||
background-color: #fff;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
|
||||
/* Styles pour la responsivité */
|
||||
@media (max-width: 768px) {
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user