MediaWiki:Common.css: Difference between revisions

From Beta Wiki
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
@font-face {
  font-family: 'Minecraft';
  src: url('fonts/MinecraftRegular-Bmg3');
}


html {
html {
Line 15: Line 20:
   background-color: rgba(0, 0, 0, 15);
   background-color: rgba(0, 0, 0, 15);
   background-image: url(https://i.pinimg.com/originals/0e/1f/c2/0e1fc2e0638e878d3ba8db495152164c.png);
   background-image: url(https://i.pinimg.com/originals/0e/1f/c2/0e1fc2e0638e878d3ba8db495152164c.png);
}
p {
  font-family: Minecraft;
}
}

Revision as of 13:44, 12 August 2024

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

@font-face {
   font-family: 'Minecraft';
   src: url('fonts/MinecraftRegular-Bmg3');
}

html {
   background-image: url(https://i.pinimg.com/originals/0e/1f/c2/0e1fc2e0638e878d3ba8db495152164c.png);
}

body {
   color: rgba(0, 0, 0, 15);
   background-color: rgba(0, 0, 0, 15);
   background-image: url(https://i.pinimg.com/originals/0e/1f/c2/0e1fc2e0638e878d3ba8db495152164c.png);
}

div.mw-page-container {
   color: rgba(0, 0, 0, 15);
   background-color: rgba(0, 0, 0, 15);
   background-image: url(https://i.pinimg.com/originals/0e/1f/c2/0e1fc2e0638e878d3ba8db495152164c.png);
}

p {
   font-family: Minecraft;
}