Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
 
(26 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Background Image */
/* Image used when in Light mode */
:root..skin-theme-clientpref-light {
  body {
        background-image: url('resources/assets/WallpaperBG-Light.png');
        background-repeat: repeat;
        background-size: 512px;
      }
}
/* Image used in Dark mode */
:root..skin-theme-clientpref-night {
  body {
        background-image: url('resources/assets/WallpaperBG-Darker.png');
        background-repeat: repeat;
        background-size: 512px;
      }
}
/* Image class that makes it take up 80% of the page's width */
img.80width {
    width: 80%;
    height: auto;
}


@font-face {
@font-face {
  font-family: 'FOT Comic Mystery';
    font-family: 'Pop Happiness';
  src: url('https://cdn.discordapp.com/attachments/1058967869209182309/1227481907894292480/FOT-ComicMysteryStd-DB.woff2?ex=6628909c&is=66161b9c&hm=7b0cd1fb4a5e71798c3839fbab7aed7ab622e09f498a124f023110e27b0e9f8e&') format('woff2');
    src: url('/fonts/FOT-PopHappinessStd-EB.woff2') format('woff2'),
        url('/fonts/FOT-PopHappinessStd-EB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
}


.mw-body-content h2,
@font-face {
.mw-body-content h3,
    font-family: 'Comic Mystery';
.mw-body-content h4,
    src: url('/fonts/FOT-ComicMysteryStd-DB.woff') format('woff');
.mw-body-content h5 {
    font-weight: normal;
font-family: 'FOT Comic Mystery' !important;
    font-style: normal;
    font-display: swap;
}
}


/* Background Image */
@font-face {
body {
    font-family: 'Mystery';
background-image: url('LM2_Wallpaper.png')
    src: url('/fonts/FOT-MysteryStd-DB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
 
@font-face {
    font-family: 'Chiaro';
    src: url('/fonts/FOT-ChiaroStd-B.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
 
@font-face {
    font-family: 'Matisse Eleganto Pro';
    src: url('/fonts/FOT-MatisseElegantoPro-B.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
 
 
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comic Mystery', sans-serif;
}
}

Latest revision as of 14:43, 6 July 2025

/* CSS placed here will be applied to all skins */

/* Background Image */


/* Image used when in Light mode */

:root..skin-theme-clientpref-light {
  body {
        background-image: url('resources/assets/WallpaperBG-Light.png');
        background-repeat: repeat;
        background-size: 512px;
       }
}


/* Image used in Dark mode */

:root..skin-theme-clientpref-night {
  body {
        background-image: url('resources/assets/WallpaperBG-Darker.png');
        background-repeat: repeat;
        background-size: 512px;
       }
}


/* Image class that makes it take up 80% of the page's width */

img.80width {
    width: 80%;
    height: auto;
}


@font-face {
    font-family: 'Pop Happiness';
    src: url('/fonts/FOT-PopHappinessStd-EB.woff2') format('woff2'),
        url('/fonts/FOT-PopHappinessStd-EB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Comic Mystery';
    src: url('/fonts/FOT-ComicMysteryStd-DB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mystery';
    src: url('/fonts/FOT-MysteryStd-DB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chiaro';
    src: url('/fonts/FOT-ChiaroStd-B.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Matisse Eleganto Pro';
    src: url('/fonts/FOT-MatisseElegantoPro-B.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Comic Mystery', sans-serif;
}