MediaWiki:Vector.css: Difference between revisions

From bg3.wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 41: Line 41:
}
}


/* Make some warnings more prominent */
/*
* Make some warnings more prominent
*/


body.theme-dark-grey .mw-userconfigpublic {
body.theme-dark-grey .mw-userconfigpublic {
Line 52: Line 54:
}
}


/* Main Page stuff */
/*
* Main Page
*/


@media screen and (min-width: 780px) {
@media screen and (min-width: 780px) {
Line 73: Line 77:
}
}


/* Conditionally hiding things on narrow screens */
/*
* Conditionally hiding things on narrow screens
*/


@media screen and (max-width: 1199px) {
@media screen and (max-width: 1199px) {
Line 81: Line 87:
}
}


/* The feedback footer */
/*
* Feedback Footer
*/


body.theme-dark-grey .bg3wiki-article-footer {
body.theme-dark-grey .bg3wiki-article-footer {
Line 94: Line 102:
}
}


/* Various elements used across the wiki follow */
/*
* Various elements used across the wiki
*/
 
/* Info blob */


body.theme-dark-grey .bg3wiki-info-blob {
body.theme-dark-grey .bg3wiki-info-blob {
background-color: var(--bg-dark);
background-color: var(--bg-dark);
}
}
.bg3wiki-info-blob {
font-family: monospace;
}
div.bg3wiki-info-blob {
div.bg3wiki-info-blob {
display: inline-block;
display: inline-block;
Line 109: Line 116:
border-radius: 20px;
border-radius: 20px;
}
}
span.bg3wiki-info-blob {
span.bg3wiki-info-blob {
display: inline-block;
display: inline-block;
Line 115: Line 121:
border-radius: 10px;
border-radius: 10px;
}
}
.bg3wiki-info-blob {
font-family: monospace;
}
/* D20 background image for numbers */


.bg3wiki-d20-bg {
.bg3wiki-d20-bg {
Line 122: Line 133:
     background-size: 35px;
     background-size: 35px;
}
}
/* Coordinates */


.bg3wiki-coordinates {
.bg3wiki-coordinates {
Line 132: Line 145:
box-shadow: 1px 1px 5px #00000030;
box-shadow: 1px 1px 5px #00000030;
}
}
/* Weapon properties */
.bg3wiki-weapon-damages dt {
font-weight: normal;
}
.bg3wiki-weapon-damages dd {
margin-left: 0;
}
/* Imitating in-game tooltips */


.bg3wiki-tooltip-box {
.bg3wiki-tooltip-box {

Revision as of 22:25, 29 August 2023

/* CSS placed here will affect users of the Vector skin */

html {
	/* This is just for while the background image is loading. */
	background-color: black !important;
	
	/* Whole-page image background */
	background-image: url(/static/background.webp);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: top;
	background-size: cover;
}

body.theme-dark-grey {
	/* Gradient background for centered body. */
	background: linear-gradient(rgba(27 27 27 / 90%) 80%, transparent);
}

.vector-body h3 {
	font-size: 1.25em;
}

.vector-body h4 {
	font-size: 1.2em;
}

.wikitable caption {
	padding: 5px;
}

.wikitable tr :is(th, td) {
	padding-left: 0.8em;
	padding-right: 0.8em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.wikitable tr td :is(ol, ul) {
	margin: 0 0 0 1em;
}

/* 
 * Make some warnings more prominent
 */

body.theme-dark-grey .mw-userconfigpublic {
	color: yellow;
}

body.theme-dark-grey .mw-userconfigdangerous {
	color: red;
	font-weight: bold;
}

/* 
 * Main Page
 */

@media screen and (min-width: 780px) {
	.bg3wiki-mainpage-left {
		float: left;
		padding-left: 10px;
		padding-right: 15px;
		width: calc(50% - 25px);
	}
	.bg3wiki-mainpage-right {
		float: right;
		padding-left: 15px;
		padding-right: 10px;
		width: calc(50% - 25px);
	}
}

body:is(.page-Main_Page, .page-Template_MainPageDesktop) h2 {
	text-align: center;
}

/*
 * Conditionally hiding things on narrow screens
 */

@media screen and (max-width: 1199px) {
	.bg3wiki-minwidth-1200 {
		display: none;
	}
}

/*
 * Feedback Footer
 */

body.theme-dark-grey .bg3wiki-article-footer {
	border: 1px solid var(--bdr-color);
	background-color: var(--bg-dark);
}

.bg3wiki-article-footer {
	font-size: 1.1em;
	margin-top: 1em;
	padding: 0.5em;
}

/*
 * Various elements used across the wiki
 */

/* Info blob */

body.theme-dark-grey .bg3wiki-info-blob {
	background-color: var(--bg-dark);
}
div.bg3wiki-info-blob {
	display: inline-block;
	padding: 0 1em 0 1em;
	border-radius: 20px;
}
span.bg3wiki-info-blob {
	display: inline-block;
	padding: 0 0.5em 0 0.5em;
	border-radius: 10px;
}
.bg3wiki-info-blob {
	font-family: monospace;
}

/* D20 background image for numbers */

.bg3wiki-d20-bg {
    background-image: url('/static/d20-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
}

/* Coordinates */

.bg3wiki-coordinates {
	font-family: 'Linux Libertine', 'Times', serif;
	text-shadow: 1px 1px 2px #000, -1px -1px 2px #000;
	color: #AB9F89;
	background: #34323285;
	border-radius: 5px;
	padding: 3px 5px;
	box-shadow: 1px 1px 5px #00000030;
}

/* Weapon properties */

.bg3wiki-weapon-damages dt {
	font-weight: normal;
}
.bg3wiki-weapon-damages dd {
	margin-left: 0;
}

/* Imitating in-game tooltips */

.bg3wiki-tooltip-box {
	background: #1B1A19;
	box-shadow:
	rgba(0, 0, 0, 0.14) 3px 3px 6px 0px inset,
	rgba(0, 0, 0, 0.14) -3px -3px 6px 1px inset;
	border: 0.15rem solid #785000;
	border-radius: 10px;
	padding: 15px;
}

.bg3wiki-book-text {
	padding: 30px 70px;
}

.bg3wiki-book-text p {
	font-family: 'Linux Libertine', 'Times', serif;
	font-size: 1.2em;
}

.bg3wiki-tooltip-gradient-common {
	background: linear-gradient(to bottom, #1B1A1999, #1B1A1999, #1B1A1999, #40295199);
}

.bg3wiki-tooltip-gradient-uncommon {
	background: linear-gradient(to bottom, #00491599, #1B1A1999, #1B1A1999, #40295199);
}

.bg3wiki-tooltip-gradient-rare {
	background: linear-gradient(to bottom, #00374999, #1B1A1999, #1B1A1999, #40295199);
}

.bg3wiki-tooltip-gradient-veryrare {
	background: linear-gradient(to bottom, #54003299, #1B1A1999, #1B1A1999, #40295199);
}

.bg3wiki-tooltip-gradient-legendary {
	background: linear-gradient(to bottom, #563E0D99, #1B1A1999, #1B1A1999, #40295199);
}

.bg3wiki-tooltip-gradient-story {
	background: linear-gradient(to bottom, #561D0099, #1B1A1999, #1B1A1999, #40295199);
}