MediaWiki:Common.css: Difference between revisions

From Chicory: A Colorful Tale Wiki
Content added Content deleted
(add fonts)
Tag: Replaced
(add ombox)
Line 44: Line 44:
font-style: normal;
font-style: normal;
font-display: swap;
font-display: swap;
}

/* From https://dev.miraheze.org/wiki/MediaWiki:Common.css */
/* Other pages message box styles */
table.ombox {
margin: 4px 10%;
border-collapse: collapse;
border: 1px solid #a2a9b1; /* Default "notice" gray */
background-color: #f8f9fa;
box-sizing: border-box;
}

table.ombox-notice {
border: 1px solid #a2a9b1; /* Gray */
}
table.ombox-speedy {
border: 2px solid #b32424; /* Red */
background-color: #fee7e6; /* Pink */
}
table.ombox-delete {
border: 2px solid #b32424; /* Red */
}
table.ombox-content {
border: 1px solid #f28500; /* Orange */
}
table.ombox-style {
border: 1px solid #fc3; /* Yellow */
}
table.ombox-move {
border: 1px solid #9932cc; /* Purple */
}
table.ombox-protection {
border: 2px solid #a2a9b1; /* Gray-gold */
}
}

Revision as of 00:38, 10 February 2024

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

/* [[File:Domigorgon Plus.woff2]] */
@font-face {
  font-family: 'Domigorgon';
  src: url('https://static.miraheze.org/chicorywiki/c/c7/Domigorgon_Plus.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* [[File:Five Cents.woff2]] */
@font-face {
	font-family: 'Five Cents';
	src: url('https://static.miraheze.org/chicorywiki/e/ea/Five_Cents.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* [[File:Lulus.woff2]] */
@font-face {
	font-family: 'Lulus';
	src: url('https://static.miraheze.org/chicorywiki/1/1a/Lulus.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* [[File:Metafors.woff2]] */
@font-face {
	font-family: 'Metafors';
	src: url('https://static.miraheze.org/chicorywiki/e/ed/Metafors.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* [[File:Shannnn.woff2]] */
@font-face {
	font-family: 'Shannnn';
	src: url('https://static.miraheze.org/chicorywiki/d/d6/Shannnn.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* From https://dev.miraheze.org/wiki/MediaWiki:Common.css */
/* Other pages message box styles */
table.ombox {
	margin: 4px 10%;
	border-collapse: collapse;
	border: 1px solid #a2a9b1;    /* Default "notice" gray */
	background-color: #f8f9fa;
	box-sizing: border-box;
}

table.ombox-notice {
	border: 1px solid #a2a9b1;    /* Gray */
}
table.ombox-speedy {
	border: 2px solid #b32424;    /* Red */
	background-color: #fee7e6;    /* Pink */
}
table.ombox-delete {
	border: 2px solid #b32424;    /* Red */
}
table.ombox-content {
	border: 1px solid #f28500;    /* Orange */
}
table.ombox-style {
	border: 1px solid #fc3;       /* Yellow */
}
table.ombox-move {
	border: 1px solid #9932cc;    /* Purple */
}
table.ombox-protection {
	border: 2px solid #a2a9b1;    /* Gray-gold */
}