Autres actions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
| Ligne 68 : | Ligne 68 : | ||
/* Margin around it adjusted. */ | /* Margin around it adjusted. */ | ||
.mw-collapsible .mw-collapsible-toggle { | /* .mw-collapsible .mw-collapsible-toggle { | ||
/* float: left; | |||
/* margin-left: 0; | |||
/* margin-right: 1em; | |||
} | /* } */ | ||
Version du 24 avril 2025 à 10:19
/* Le CSS placé ici sera appliqué à tous les habillages. */
/* Infobulles*/
.tooltip{
position: relative;
}
.tooltiptext {
position: absolute;
display: block;
z-index: 2;
width: 250px;
padding: 10px;
visibility: hidden;
opacity: 0;
white-space: normal;
text-align: left;
transition: all 0.2s;
border: 1px solid #aaa;
background-color: var(--border-color-base);
}
.tooltip:hover>.tooltiptext {
visibility: visible;
opacity: 1;
}
/* Citations : casser les mots trop longs, les URL, etc.*/
.citation {
word-wrap: break-word;
}
/* CSS Typing Text
*
* @author: Unknown
* current version crafted together by [[User:Christharp]].
*/
.typing{
margin: 10px 0 0 10px;
width: 1000px;
white-space:nowrap;
overflow:hidden;
animation: type 18s steps(100, end);
}
@keyframes type{
from { width: 0; }
}
/* Responsive flex boxes */
.flex-container {
display: flex;
flex-wrap: wrap;
}
.flex-item {
flex: 15%;
}
@media (max-width: 800px) {
.flex-item {
flex: 30%;
}
}
/* Collapsible elements. Toggle-link moved to left.
/* Margin around it adjusted. */
/* .mw-collapsible .mw-collapsible-toggle {
/* float: left;
/* margin-left: 0;
/* margin-right: 1em;
/* } */