MediaWiki:Common.css: Difference between revisions

From MythCraft Online SRD
Jump to navigation Jump to search
No edit summary
No edit summary
Line 19: Line 19:


/* Positioning */
/* Positioning */
position: sticky;
position: fixed;


/* Effects */
/* Effects */

Revision as of 17:13, 13 November 2023

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


body {
background: url("/images/TexturedBackground.jpg");
background-size: cover;
background-attachment: fixed;
}

div #mw-panel {

	/* Color & Background */
	background-attachment: scroll;
	background-color: rgba(255, 255, 255, 0.67);
	
	/* Box */
	height: 500px;
	width: 160px;

	/* Positioning */
	position: fixed;

	/* Effects */
    border-padding-top: 80px;
	border-top-left-radius: 0px;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 8px;
}