MediaWiki:Erudite.css: Difference between revisions
Content added Content deleted
No edit summary |
No edit summary |
||
Line 18: | Line 18: | ||
} |
} |
||
/* Main Body */ |
|||
#main { |
#main { |
||
color: white; |
color: white; |
||
Line 25: | Line 26: | ||
border-color: #ccc; |
border-color: #ccc; |
||
border-width: thin; |
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: #dddddd; |
|||
margin: 0 0 0.5em; |
|||
} |
|||
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; |
|||
} |
} |
||
Line 45: | Line 123: | ||
a.new { |
a.new { |
||
color: #cc0000; |
color: #cc0000; |
||
} |
|||
#bodyContent > h1 { |
|||
color: #555555; |
|||
margin: 0 0 0.5em; |
|||
} |
} |
||
Revision as of 03:22, 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: #ccc;
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: #dddddd;
margin: 0 0 0.5em;
}
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: #3498BF;
text-decoration: none;
border-bottom: thin solid #aaaaaa;
}
a:hover,
a:focus {
border-color: #555555;
}
a:visited {
color: #5E46B8;
}
a.new {
color: #cc0000;
}
#bodyContent > h1 {
color: #555555;
margin: 0 0 0.5em;
}
/*Set color for bottom wrap */
#bottom-wrap {
background-color: rgba(10, 10, 10, 0.7);
}