MediaWiki:Common.css: Difference between revisions

From PHIGHTING! Wiki
Content added Content deleted
mNo edit summary
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 84: Line 84:
display:flex;
display:flex;
align-items:center;
align-items:center;
}

.pi-header {
text-align:center;
}

[data-item-name="pi-catalog"] {
text-align:center;
}
}



Latest revision as of 21:46, 15 April 2024

/* CSS placed here will be applied to all skins */

/* Import for Ability.css for {{{AbilityNew}}} template */

@import url('/index.php?title=MediaWiki:Ability.css&action=raw&ctype=text/css&cb=3');

/* Gotham for Windows/Android */

@font-face {
font-family: Gotham;
src: url('https://static.miraheze.org/phightingwiki/b/b2/Gotham_Medium.woff2') format('woff2'), url('https://static.miraheze.org/phightingwiki/2/20/Gotham_Medium.ttf') format('truetype');
}

@font-face {
font-family: Gotham;
font-weight:bold;
src: url('https://static.miraheze.org/phightingwiki/7/7c/Gotham_Black_Regular.woff2') format('woff2'), url('https://static.miraheze.org/phightingwiki/4/4e/Gotham_Black_Regular.ttf') format('truetype');
}

/*Logo fix in Vector skins*/
.mw-wiki-logo {
	background-size:contain;
}

.mw-wiki-logo.fallback {
	width:inherit;
}

/*Main Page - Hover CSS*/

.zoom_img img{
	-moz-transition:-moz-transform 0.1s ease-in; 
	-webkit-transition:-webkit-transform 0.1s ease-in; 
	-o-transition:-o-transform 0.1s ease-in;
	transition:transform 0.1 ease-in;
}

.zoom_img img:hover{
	-moz-transform:scale(1.15); 
	-webkit-transform:scale(1.15);
	-o-transform:scale(1.15);
	transform:scale(1.15);
	opacity: 0.75;
	filter: grayscale(100%);
	filter: alpha(opacity=75);
}

/*Message Box styling*/
.mbox {
    margin-bottom:10px;
}

.mbox__content {
    display:flex;
    width:60%;
    margin:auto;
    align-items:center;
    padding:0.5em 1em
}

.mbox__content__header {
    font-size:1.2em;
}

.mbox__content__text__comment {
	font-size:0.8em;
	font-style:italic;
}

/*Main Page - Common Styling*/
.fp-welcome, .fp-version {
	text-align:center;
}

.fp-patchnotes {
	overflow-y:scroll;
	height:300px;
	text-align:left;
	border: 1px black solid;
}

/* Infobox - Common styling */
.pi-data {
    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;
}

/* [[Skins]] table - common styling */
.phskintable img {
    width:170px;
}

/* Currently unused colour styling
.phskintable .skin-yes {
    background:#98ff4f;
}

.phskintable .skin-no {
    background:#fa3235;
}
*/

.phskintable .skin-yes, .phskintable .skin-no {
    font-size:1.5em;
}

/*******************
 * Navboxes
 *******************/
/*
* CSS Vars
* Note: The linter will throw an error. See [https://community.fandom.com/wiki/Help:Advanced_CSS_and_JS#Common_issues this page] for more info.
*/
.navbox {
    --navbox-bg-color: var(--theme-page-background-color);
    --navbox-text-color: var(--theme-page-text-color);
    --navbox-title-color: rgba(var(--theme-accent-color--rgb, rgb(102, 102, 102)), 0.5);
    --navbox-header-color: rgba(var(--theme-accent-color--rgb, rgb(102, 102, 102)), 0.3);
    --navbox-alt-color: rgba(var(--theme-accent-color--rgb, rgb(85, 85, 85)), 0.1);
    --navbox-border-color: var(--theme-border-color)
}
.navbox {
    width: 100%;
    background: var(--navbox-bg-color, white);
    color: var(--navbox-text-color, black);
    margin: 1em auto;
    font-size: 84%;
    clear: both;
    padding: 2px;
    border-spacing: 0;
    border: 1px solid var(--navbox-border-color, #AAA);
}

/* Merges navboxes that are directly under eachother */
.navbox + .navbox {
    margin-top: -11px;
}

.navbox .navbox-title {
    background: var(--navbox-title-color, #CCF);
    color: var(--navbox-text-color, black);
    font-weight: bold;
    font-size: 114%;
}

.navbox .navbox-vde {
    float:left;
    width:65px;
}

.navbox .navbox-title-padright {
    padding-right: 65px;
}

.navbox .navbox-title-padleft {
    padding-left: 65px;
}

.navbox .navbox-subgroup {
    border-spacing: 0;
    width: 100%;
}

.navbox .navbox-gutter {
    height: 2px;
}

.navbox .navbox-subgroup .navbox-gutter {
    background: var(--navbox-bg-color, white);
}

.navbox .navbox-section-row > td {
    padding: 0;
    height: 100%;
}

.navbox .navbox-section {
    width: 100%;
    border-spacing: 0;
}

.navbox .navbox-above,
.navbox .navbox-below {
    background: var(--navbox-header-color, #DDF);
    text-align: center;
}

.navbox .navbox-image {
    background: var(--navbox-bg-color, white);
    text-align: center;
}

.navbox .navbox-group,
.navbox .navbox-header {
    background: var(--navbox-header-color, #DDF);
    color: var(--navbox-text-color, black);
    font-weight: bold;
    height: 100%;
    padding: 2px 4px;
}

.navbox .navbox-header-collapsible {
    padding-left: 65px;
}

.navbox .navbox-group {
white-space: nowrap;
    text-align: right;
    padding-left: 1em;
    padding-right: 1em;
    width: auto;
}

.navbox .navbox-group,
.navbox .navbox-image-left {
    border-right: 2px solid var(--navbox-bg-color, white);
}

.navbox .navbox-image-right {
    border-left: 2px solid var(--navbox-bg-color, white);
}

.navbox .navbox-list {
    background: var(--navbox-bg-color, white);
    color: var(--navbox-text-color, black);
    width: 100%;
    height: 100%;
    padding: 0;
}

.navbox .alt > .navbox-list {
    background: var(--navbox-alt-color, #F7F7F7);
}

.navbox .navbox-list div {
    padding: 0px 4px;
}

.navbox .navbox-list.no-group {
    text-align: center;
    padding-top: 2px;
    padding-bottom: 2px;
}

.navbox .mw-collapsible-toggle {
    width: 65px;
}

/* hlist */
.hlist dl,
.hlist ol,
.hlist ul {
	margin: 0;
	padding: 0;
}

/* Display list items inline */
.hlist dd,
.hlist dt,
.hlist li {
	margin: 0; /* don't trust the note that says margin doesn't work with inline
				* removing margin: 0 makes dds have margins again */
	display: inline;
}

/* Display nested lists inline */
.hlist.inline,
.hlist.inline dl,
.hlist.inline ol,
.hlist.inline ul,
.hlist dl dl,
.hlist dl ol,
.hlist dl ul,
.hlist ol dl,
.hlist ol ol,
.hlist ol ul,
.hlist ul dl,
.hlist ul ol,
.hlist ul ul {
	display: inline;
}

/* Hide empty list items */
.hlist .mw-empty-li {
	display: none;
}

/* Generate interpuncts */
.hlist dt:after {
	content: ": ";
}

.hlist dd:after,
.hlist li:after {
	content: " · ";
	font-weight: bold;
}

.hlist dd:last-child:after,
.hlist dt:last-child:after,
.hlist li:last-child:after {
	content: none;
}

/* Add parentheses around nested lists */
.hlist dd dd:first-child:before,
.hlist dd dt:first-child:before,
.hlist dd li:first-child:before,
.hlist dt dd:first-child:before,
.hlist dt dt:first-child:before,
.hlist dt li:first-child:before,
.hlist li dd:first-child:before,
.hlist li dt:first-child:before,
.hlist li li:first-child:before {
	content: " (";
	font-weight: normal;
}

.hlist dd dd:last-child:after,
.hlist dd dt:last-child:after,
.hlist dd li:last-child:after,
.hlist dt dd:last-child:after,
.hlist dt dt:last-child:after,
.hlist dt li:last-child:after,
.hlist li dd:last-child:after,
.hlist li dt:last-child:after,
.hlist li li:last-child:after {
	content: ")";
	font-weight: normal;
}

/* Put ordinals in front of ordered list items */
.hlist ol {
	counter-reset: listitem;
}

.hlist ol > li {
	counter-increment: listitem;
}

.hlist ol > li:before {
	content: " " counter(listitem) "\a0";
}

.hlist dd ol > li:first-child:before,
.hlist dt ol > li:first-child:before,
.hlist li ol > li:first-child:before {
	content: " (" counter(listitem) "\a0";
}

/*whatever's next*/

/* NUDIALOG TEMPLATE CSS - by Sillyvizion */
.dialogcontainer {
	display:flex;
	flex-flow:column nowrap;
	width:100%;
	align-items:center;
	margin-bottom:1em;
}

.dialogcontainer .phighterimg {
	z-index:1;
	margin-left:12%;
	align-self:start;
}

.dialogcontainer .speechcontainer {
	z-index:2;
	flex:1;
	width:80%;
	margin-top:-25px
}

.dialogcontainer .speechbox {
	background-color:black;
	padding:25px;
	transform:skew(-10deg);
}

.dialogcontainer .phightername {
	font-family:'Gotham';
	font-weight:bold;
	font-size:25px;
	transform:skew(10deg);
	position:absolute;
	top:-18px;
	text-shadow:rgb(0, 0, 0) 3px 0px 0px, rgb(0, 0, 0) 2.83487px 0.981584px 0px, rgb(0, 0, 0) 2.35766px 1.85511px 0px, rgb(0, 0, 0) 1.62091px 2.52441px 0px, rgb(0, 0, 0) 0.705713px 2.91581px 0px, rgb(0, 0, 0) -0.287171px 2.98622px 0px, rgb(0, 0, 0) -1.24844px 2.72789px 0px, rgb(0, 0, 0) -2.07227px 2.16926px 0px, rgb(0, 0, 0) -2.66798px 1.37182px 0px, rgb(0, 0, 0) -2.96998px 0.42336px 0px, rgb(0, 0, 0) -2.94502px -0.571704px 0px, rgb(0, 0, 0) -2.59586px -1.50383px 0px, rgb(0, 0, 0) -1.96093px -2.27041px 0px, rgb(0, 0, 0) -1.11013px -2.78704px 0px, rgb(0, 0, 0) -0.137119px -2.99686px 0px, rgb(0, 0, 0) 0.850987px -2.87677px 0px, rgb(0, 0, 0) 1.74541px -2.43999px 0px, rgb(0, 0, 0) 2.44769px -1.73459px 0px, rgb(0, 0, 0) 2.88051px -0.838247px 0px; /* Yes I know this is atrocious but it looks sick so who cares */
}

.dialogcontainer .speech {
	font-family:'Gotham';
	font-weight:bold;
	font-size:14px;
	transform:skew(10deg);
	text-align:center;
}

.dialogcontainer .speech > p {
	margin-bottom:0;
}

.dialogmulti + .dialogmulti {
	margin-top:2.5em;
}

/* 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);
    }
}