Category:Wiki Content: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(8 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
< | <syntaxhighlight lang='css' line> | ||
body | /* Backgrounds */ | ||
body { | |||
background: url('https://heroes.thelazy.net/images/9/9f/Shroud.png') | background: url('https://heroes.thelazy.net/images/9/9f/Shroud.png') | ||
} | } | ||
#mw-head-base, | |||
#mw-head, | |||
#mw-page-base { | |||
background: transparent; | |||
} | |||
/*Dark inner area*/ | |||
table, | table, | ||
div.mw-body-content.mw-content-ltr { | div.mw-body-content.mw-content-ltr { | ||
background: url('https://heroes.thelazy.net/images/ | color: white; | ||
background: url('https://heroes.thelazy.net/images/b/b4/Leather-extra-dark.png'); | |||
} | |||
/* Items with borders */ | |||
div.mw-body-content.mw-content-ltr, | |||
#mw-content-text { | |||
border-image-source: url('https://heroes.thelazy.net/images/c/c7/Border-gold.png'); | |||
border-image-slice: 8 9 8 9; | |||
border-image-width: 8px 9px 8px 9px; | |||
border-image-outset: 8px 9px 8px 9px; | |||
border-image-repeat: repeat repeat; | |||
} | } | ||
/* Thick blue border */ | |||
#content { | #content { | ||
border-image-source: url('https://heroes.thelazy.net/images/4/43/Border-blue.png'); | |||
border-image-slice: 48 48 48 48; | |||
border-image-width: 48px 48px 48px 48px; | |||
border-image-outset: 0px 0px 0px 0px; | |||
border-image-repeat: repeat repeat; | |||
} | } | ||
/* Thick red border */ | |||
.vector-menu-content { | |||
border-image-source: url('https://heroes.thelazy.net/images/2/2a/Border-red.png'); | |||
border-image-slice: 48 48 48 48; | |||
border-image-width: 48px 48px 48px 48px; | |||
border-image-outset: 0px 0px 0px 0px; | |||
border-image-repeat: repeat repeat; | |||
} | |||
.vector-legacy-sidebar .vector-menu-portal .vector-menu-content { | |||
padding: 24px; | |||
margin: 0; | |||
background: url('https://heroes.thelazy.net/images/8/82/Marble.png'); | |||
} | |||
#content { | |||
background: url('https://heroes.thelazy.net/images/3/3d/Leather.png'); | |||
color: white; | |||
margin-top: 4px; | |||
} | |||
#content { | |||
padding: 48px; | |||
} | |||
/* Headings */ | |||
h1, | |||
h2, | |||
h3, | |||
h4 { | |||
color: white; | |||
} | |||
/* Links */ | |||
a, | |||
a:visited { | |||
color: lightblue !important; | |||
} | |||
/* Font colors */ | |||
.vector-menu-heading-label, | |||
.mw-redirectedfrom { | |||
color: white !important; | |||
} | |||
/* Tabs are annoying */ | |||
#left-navigation .vector-menu-tabs { | |||
border: 2px solid darkgoldenrod; | |||
} | |||
.vector-menu-tabs .vector-menu-content { | |||
border: 2px solid black; | |||
} | |||
#left-navigation .vector-menu-content-list { | |||
border: 2px solid darkgoldenrod; | |||
} | |||
li.mw-list-item { | |||
background: transparent !important; | |||
padding: 0.2em 0.6em; | |||
} | |||
.vector-menu-tabs .vector-menu-content-list li:not(:last-child) { | |||
border-right: 2px solid goldenrod; | |||
} | |||
.vector-menu-tabs-legacy li a { | |||
background: none; | |||
height: initial; | |||
padding: 0; | |||
margin: 0; | |||
} | |||
/* Top menu list is different */ | |||
#p-personal .vector-menu-content-list { | |||
border: none; | |||
} | |||
#mw-content-text { | |||
padding: 8px; | |||
} | |||
/* Disable tools header */ | |||
#p-tb-label { | |||
display: none; | |||
} | |||
/* Disable sliver of image */ | |||
#p-views { | |||
background: none; | |||
height: initial; | |||
} | |||
</syntaxhighlight> | |||
[[Category:contributor resources]] | [[Category:contributor resources]] |
Latest revision as of 00:26, 16 September 2024
/* Backgrounds */
body {
background: url('https://heroes.thelazy.net/images/9/9f/Shroud.png')
}
#mw-head-base,
#mw-head,
#mw-page-base {
background: transparent;
}
/*Dark inner area*/
table,
div.mw-body-content.mw-content-ltr {
color: white;
background: url('https://heroes.thelazy.net/images/b/b4/Leather-extra-dark.png');
}
/* Items with borders */
div.mw-body-content.mw-content-ltr,
#mw-content-text {
border-image-source: url('https://heroes.thelazy.net/images/c/c7/Border-gold.png');
border-image-slice: 8 9 8 9;
border-image-width: 8px 9px 8px 9px;
border-image-outset: 8px 9px 8px 9px;
border-image-repeat: repeat repeat;
}
/* Thick blue border */
#content {
border-image-source: url('https://heroes.thelazy.net/images/4/43/Border-blue.png');
border-image-slice: 48 48 48 48;
border-image-width: 48px 48px 48px 48px;
border-image-outset: 0px 0px 0px 0px;
border-image-repeat: repeat repeat;
}
/* Thick red border */
.vector-menu-content {
border-image-source: url('https://heroes.thelazy.net/images/2/2a/Border-red.png');
border-image-slice: 48 48 48 48;
border-image-width: 48px 48px 48px 48px;
border-image-outset: 0px 0px 0px 0px;
border-image-repeat: repeat repeat;
}
.vector-legacy-sidebar .vector-menu-portal .vector-menu-content {
padding: 24px;
margin: 0;
background: url('https://heroes.thelazy.net/images/8/82/Marble.png');
}
#content {
background: url('https://heroes.thelazy.net/images/3/3d/Leather.png');
color: white;
margin-top: 4px;
}
#content {
padding: 48px;
}
/* Headings */
h1,
h2,
h3,
h4 {
color: white;
}
/* Links */
a,
a:visited {
color: lightblue !important;
}
/* Font colors */
.vector-menu-heading-label,
.mw-redirectedfrom {
color: white !important;
}
/* Tabs are annoying */
#left-navigation .vector-menu-tabs {
border: 2px solid darkgoldenrod;
}
.vector-menu-tabs .vector-menu-content {
border: 2px solid black;
}
#left-navigation .vector-menu-content-list {
border: 2px solid darkgoldenrod;
}
li.mw-list-item {
background: transparent !important;
padding: 0.2em 0.6em;
}
.vector-menu-tabs .vector-menu-content-list li:not(:last-child) {
border-right: 2px solid goldenrod;
}
.vector-menu-tabs-legacy li a {
background: none;
height: initial;
padding: 0;
margin: 0;
}
/* Top menu list is different */
#p-personal .vector-menu-content-list {
border: none;
}
#mw-content-text {
padding: 8px;
}
/* Disable tools header */
#p-tb-label {
display: none;
}
/* Disable sliver of image */
#p-views {
background: none;
height: initial;
}
Media in category "Wiki Content"
The following 56 files are in this category, out of 56 total.
-
176-146-overlay.png 176 × 146; 831 bytes
-
176-76-overlay.png 176 × 76; 702 bytes
-
Blue-border-corner.png 72 × 72; 3 KB
-
Blue-border-horizontal.png 72 × 16; 1 KB
-
Blue-border-vertical.png 17 × 72; 1 KB
-
Border-blue.png 143 × 143; 11 KB
-
Border-gold.png 44 × 44; 2 KB
-
Border-red.png 143 × 143; 11 KB
-
Creature-box.png 304 × 382; 191 KB
-
Dwelling-portrait-box.png 762 × 186; 52 KB
-
Fortifications-box.png 958 × 372; 109 KB
-
Inner-corner.png 9 × 9; 629 bytes
-
Inner-horizontal.png 20 × 8; 592 bytes
-
Inner-junction-T-horizontal-1.png 11 × 9; 664 bytes
-
Inner-junction-T-horizontal-2.png 11 × 9; 636 bytes
-
Inner-junction-T-vertical.png 9 × 11; 676 bytes
-
Inner-vertical.png 9 × 20; 584 bytes
-
Leather-blue-dark.png 256 × 256; 59 KB
-
Leather-blue.png 256 × 256; 65 KB
-
Leather-dark.png 256 × 256; 119 KB
-
Leather-extra-dark.png 256 × 256; 85 KB
-
Leather.png 256 × 256; 133 KB
-
Marble-dark.png 128 × 128; 35 KB
-
Marble.png 128 × 128; 40 KB
-
Red-corner.png 72 × 72; 3 KB
-
Red-horizontal.png 72 × 16; 1 KB
-
Red-vertical.png 17 × 72; 1 KB
-
Scroll-bar-bottom.png 38 × 1; 618 bytes
-
Scroll-bar-left.png 1 × 36; 1 KB
-
Scroll-bar-right.png 1 × 36; 1 KB
-
Scroll-bar-top.png 38 × 1; 632 bytes
-
Scroll-bottom-highlight.png 38 × 14; 2 KB
-
Scroll-bottom.png 38 × 14; 2 KB
-
Scroll-top-highlight.png 38 × 14; 2 KB
-
Scroll-top.png 38 × 14; 2 KB
-
Shroud.png 96 × 96; 8 KB
-
Town-creatures-box-bottom.png 184 × 84; 1 KB
-
Town-creatures-box-double-bottom.png 184 × 154; 1 KB
-
Town-creatures-box-double-row.png 184 × 154; 1 KB
-
Town-creatures-box-double-top.png 184 × 154; 1 KB
-
Town-creatures-box-row.png 184 × 84; 1 KB
-
Town-creatures-box-top.png 184 × 84; 1 KB
-
Town-screen-box.png 808 × 382; 4 KB
-
Towns-small-box.png 184 × 228; 1 KB
-
WRPOCS Creature 3C.png 1,920 × 1,080; 1.89 MB
-
WRPOCS Creature.png 1,920 × 1,080; 1.65 MB
-
WRPOCS Hero hC2C.png 1,920 × 1,080; 2.19 MB
-
WRPOCS Hero hC3C.png 1,920 × 1,080; 2.17 MB
-
WRPOCS Hero hC4C.png 1,920 × 1,080; 2.17 MB
-
WRPOCS Hero Main Menu sB.png 1,920 × 1,080; 1.83 MB
-
WRPOCS Hero Main Menu wB.png 1,920 × 1,080; 1.83 MB
-
WRPOCS Hero vC2C.png 1,920 × 1,080; 2.28 MB
-
WRPOCS Hero vC3C.png 1,920 × 1,080; 2.26 MB
-
WRPOCS Hero vC4C.png 1,920 × 1,080; 2.26 MB
-
WRPOCS Scenario.png 1,920 × 1,080; 2.55 MB
-
WRPOCS Town.png 1,920 × 1,080; 2.62 MB