MediaWiki:Erudite.css: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 55: Line 55:


#bodyContent > h1 {
#bodyContent > h1 {
color: #FC1481;
color: #FF4586;
margin: 0 0 0.5em;
margin: 0 0 0.5em;
border-bottom: thin solid #FF4586;
}
}



Revision as of 03:37, 7 February 2024

/*Set background image for body */
body {
	background: url(images/1/14/Terrana_avendar_the_age_of_death_queer_fantasy_landscape_dark_r_a149f06b-e9aa-456d-a881-f0f6320df980.jpg);
	background-position: center;
	background-attachment: fixed;
	background-size: 100%;
	background-color: rgba(40, 20, 40, 0.9);
}

/*Set color for top wrap */
#top-wrap {
	background-color: rgba(10, 10, 10, 0.7);
}

/* Set the colour of the top menu */
#menu {
  background-color: rgba(20, 10, 20, 0.7);
}

/* Main Body */
#main {
	color: white;
	background-color: rgba(10, 10, 10, 0.9);
	border-left-style: solid;
	border-right-style: solid;
	border-color: #8C2B59;
	border-width: thin;
}

/* Content */
#bodyContent,
.message *,
#footer {
	padding-left: 3.75em;
	padding-right: 3.75em;
}

#bodyContent {
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}

hr {
	/* This hack ensures fallback to .png if .svg isn't supported
	 * (see http://css-tricks.com/svg-fallbacks/ ) */
	background-image: url(images/hr.png);
	background-image: url(images/hr.svg), none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80% 10%;
	height: 1.25em;
	display: block;
	border: none;
}

#bodyContent > h1 {
	color: #FF4586;
	margin: 0 0 0.5em;
	border-bottom: thin solid #FF4586;
}

p,
dt,
dd,
blockquote,
center {
	margin-bottom: 0.75em;
}

li {
	margin-bottom: 0.375em;
	margin-top: 0.375em;
}

table {
	margin: 1em 0;
}

td,
th {
	padding: 0.125em 0.5em;
	text-align: left;
}

pre {
	font-size: 0.875em;
}

legend {
	font-size: 0.875em;
	text-align: center;
}

blockquote {
	padding-left: 3em;
}

.center {
	width: 100%;
	text-align: center;
}

.center * {
	margin-left: auto;
	margin-right: auto;
}

/* Links */
a {
	color: #3BACD9;
	text-decoration: none;
	border-bottom: thin solid #aaaaaa;
}

a:hover,
a:focus {
	border-color: #555555;
}

a:visited {
	color: #7657E6;
}

a.new {
	color: #cc0000;
}



/*Set color for bottom wrap */
#bottom-wrap {
	background-color: rgba(10, 10, 10, 0.7);
}