MediaWiki:Common.css: Difference between revisions

From PHIGHTING! Wiki
Content added Content deleted
m (Fixing fonts bc Im dumb)
m (Fixing fonts again)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Gotham for Windows/Android */
@font-face {
@font-face {
font-family: Gotham;
font-family: Gotham;
font-weight:bold;
font-weight:bold;
src: url('https://ouro.one/fonts/Gotham_Black_Regular.woff2') format('woff2'), url('https://ouro.one/fonts/Gotham_Black_Regular.ttf') format('truetype');
src: url('https://ouro.one/fonts/Gotham_Black_Regular.woff2') format('woff2');
}
}


@font-face {
@font-face {
font-family: Gotham;
font-family: Gotham;
src: url('https://ouro.one/fonts/Gotham_Medium.woff2') format('woff2'), url('https://ouro.one/fonts/Gotham_Medium.ttf') format('truetype');
src: url('https://ouro.one/fonts/Gotham_Medium.woff2') format('woff2');
}

/* Gotham for macOS/iOS */

@font-face {
font-family: Gotham;
font-weight:bold;
src: url('https://ouro.one/fonts/Gotham_Black_Regular.ttf') format('truetype');
}

@font-face {
font-family: Gotham;
src: url('https://ouro.one/fonts/Gotham_Medium.ttf') format('truetype');
}
}



Revision as of 07:43, 3 January 2024

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

/* Gotham for Windows/Android */
@font-face {
font-family: Gotham;
font-weight:bold;
src: url('https://ouro.one/fonts/Gotham_Black_Regular.woff2') format('woff2');
}

@font-face {
font-family: Gotham;
src: url('https://ouro.one/fonts/Gotham_Medium.woff2') format('woff2');
}

/* Gotham for macOS/iOS */

@font-face {
font-family: Gotham;
font-weight:bold;
src: url('https://ouro.one/fonts/Gotham_Black_Regular.ttf') format('truetype');
}

@font-face {
font-family: Gotham;
src: url('https://ouro.one/fonts/Gotham_Medium.ttf') format('truetype');
}

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

/*******************
 * 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 */