MediaWiki:Common.css: Difference between revisions

Content deleted Content added
mNo edit summary
mNo edit summary
 
(4 intermediate revisions by the same user not shown)
Line 84:
display:flex;
align-items:center;
}
 
.pi-header {
text-align:center;
}
 
[data-item-name="pi-catalog"] {
text-align:center;
}
 
.pr-tooltip {
text-decoration: underline dotted 2px #ff8080;
}
 
Line 406 ⟶ 418:
 
/* END NUDIALOG TEMPLATE CSS */
 
/* ABILITYNEW TEMPLATE CSS */
 
/* Scrollbar styling goes here because Sanitized CSS doesnt allow scrollbar for some reason */
.ph-ability-tabber .tabber__panel::-webkit-scrollbar {
width:10px;
}
 
.ph-ability-tabber .tabber__panel::-webkit-scrollbar-track {
background:#0e0e0e;
}
 
.ph-ability-tabber .tabber__panel::-webkit-scrollbar-thumb {
background-color:black;
border-radius:5px;
width:5px;
border:2px #0e0e0e solid;
}
 
/* Template:PhighterRainbow */
.pr-animated {
animation: swing 1s ease;
animation-iteration-count: 1;
}
 
@keyframes swing {
15% {
transform: translateY(5px);
}
30% {
transform: translateY(-5px);
}
50% {
transform: translateY(3px);
}
65% {
transform: translateY(-3px);
}
80% {
transform: translateY(2px);
}
100% {
transform: translateY(0);
}
}