MediaWiki:Common.css

From Gambian Holiday Wiki
Revision as of 21:18, 21 June 2024 by Ætérnal (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/*
    IGNORE THE ‘CSS ERRORS’.
    
    Those are just because this editor doesn’t understand that
    browsers nowadays *do* in fact support CSS nesting...
*/

/* This contains the formatting for the Biography template. */
div.global-biography {
	display: flex;
	flex-direction: column;
	width: 22em;
	float: right;
	clear: right;
	border: 1px solid black;
	padding: .1rem;
	
	/* Title. */
	& > p {
		text-align: center;
		font-size: 1.2rem;
		font-weight: bold;
		width: 100%;
		height: 1.5rem;
		line-height: 1.5rem;
		background: red;
	}
	
	/* Table (e.g. 'name: ...'). */
	& td:first-child { font-weight: bold; }
	& tr { gap: 1rem; }
}