|
|
| Ligne 14 : |
Ligne 14 : |
| .page-info { | | .page-info { |
| display: none !important; | | display: none !important; |
| }
| |
|
| |
|
| |
|
| |
| /* Conteneur responsive correct pour Citizen */
| |
| .responsive-images {
| |
| display: grid;
| |
| grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
| |
| gap: 10px;
| |
| width: 100%;
| |
| margin: 0 auto;
| |
| display: block; /* force le conteneur à être un bloc */
| |
| }
| |
|
| |
| .responsive-images::after {
| |
| content: "";
| |
| display: table; /* clearfix pour que le texte suivant se place en dessous */
| |
| clear: both;
| |
| }
| |
|
| |
| .responsive-images img {
| |
| width: 100%;
| |
| height: auto;
| |
| display: block;
| |
| }
| |
|
| |
| /* Galeries MediaWiki <gallery> */
| |
| .gallery {
| |
| display: grid !important;
| |
| grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
| |
| gap: 8px !important;
| |
| max-width: 100% !important;
| |
| overflow-x: hidden !important;
| |
| }
| |
|
| |
| /* Mobile tweaks */
| |
| @media (max-width: 600px) {
| |
| .gallery,
| |
| .responsive-images {
| |
| grid-template-columns: 1fr !important;
| |
| gap: 6px !important;
| |
| }
| |
| }
| |
|
| |
| /* Classe pour les images mobiles */
| |
| .mobile-responsive {
| |
| max-width: 100%;
| |
| height: auto;
| |
| display: block;
| |
| margin-left: auto;
| |
| margin-right: auto;
| |
| object-fit: contain;
| |
| } | | } |
Version du 8 mars 2026 à 03:54
#footer {
display: none;
}
.last-modified {
display: none;
}
.citizen-dropdown-summary {
display: none;
}
/* Date modified */
.page-info {
display: none !important;
}