m (Test.) |
(Removed the background on Auto mode to remove confusion for different devices.) |
||
| Line 1: | Line 1: | ||
/* Background Image */ | /* Background Image */ | ||
:root { | :root { | ||
/* Image used when in Auto mode */ | |||
body { | body { | ||
background-image: url(' | background-image: url('WallpaperBG.png'); | ||
background-repeat: repeat; | background-repeat: repeat; | ||
background-size: 512px; | background-size: 512px; | ||
| Line 8: | Line 9: | ||
} | } | ||
/* Image used when in Dark mode */ | |||
:root.skin-citizen-dark { | :root.skin-citizen-dark { | ||
body { | body { | ||
Revision as of 12:51, 8 July 2024
/* Background Image */
:root {
/* Image used when in Auto mode */
body {
background-image: url('WallpaperBG.png');
background-repeat: repeat;
background-size: 512px;
}
}
/* Image used when in Dark mode */
:root.skin-citizen-dark {
body {
background-image: url('images/6/61/LM2_Modding_Wiki_-_Wallpaper_(Dark_Green%2C_Low-Res.).png');
background-repeat: repeat;
background-size: 512px;
}
}
/* Image used when in Light mode */
:root.skin-citizen-light {
body {
background-image: url('images/0/01/LM2_Modding_Wiki_-_Wallpaper_(Light%2C_Low-Res.).png');
background-repeat: repeat;
background-size: 512px;
}
}
/* Custom Fonts */
@font-face {
font-family: 'Alor';
src: url('fonts/Alor-Normal.eot');
src: url('fonts/Alor-Normal.eot?#iefix') format('embedded-opentype'),
url('fonts/Alor-Normal.woff2') format('woff2'),
url('fonts/Alor-Normal.woff') format('woff'),
url('fonts/Alor-Normal.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Alor Narrow';
src: url('fonts/AlorNarrowNormal.eot');
src: url('fonts/AlorNarrowNormal.eot?#iefix') format('embedded-opentype'),
url('fonts/AlorNarrowNormal.woff2') format('woff2'),
url('fonts/AlorNarrowNormal.woff') format('woff'),
url('fonts/AlorNarrowNormal.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
.mw-body,
.mw-headline,
.mw-label,
.mw-input,
.mw-body-content,
.mw-allpages-table-form,
.mw-allpages-nav {
font-family: 'Alor Narrow' !important;
}