Template:Newes from the Dead/titlepage.css

/**
 * Custom CSS for the title page of [[Newes from the Dead]]
 */

/*
 * Main content div with an image border
 */
._newesftd_border {
	/* shrink to fit, centre in page */
	display: table;
	margin: 0 auto;
	
	/* need to set this width first to provide space for image */
	/* ereaders (and other offline devices) will see only this, as they don't
	   have access to the CSS url source */
	border: 50px solid LightGrey;
	
	/* set border from image
	   this can't be done by inline CSS for security reasons, but this
	   is sanitised CSS, so we get to use Commons images */
	border-image-source: url("https://upload.wikimedia.org/wikipedia/commons/6/66/Newes_From_the_Dead_-_Title_page_CSS_border.png");
	border-image-slice: 200 200; /* this is the size of the border elements in the source image */
	border-image-width: 50px; /* Tthis is the size of the result on the page */
	border-image-repeat: round;
	
	/* gap between content and border */
	padding: 10px;
}

/* [[Category:Specific article templates]]
 * [[Category:Graphic frame CSS]]
 */