Toggle 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
No edit summary
Line 11: Line 11:
font-family: 'CrimsonText' !important;}
font-family: 'CrimsonText' !important;}


/** Background **/
body {
body.mediawiki {
    background-image: url('https://wiki.heystories.com/images/7/74/FondoMonta%C3%B1oso.jpg');
  background-color: #092140;
    background-size: cover;
      background-image: url(https://wiki.heystories.com/images/7/74/FondoMonta%C3%B1oso.jpg);
    background-position: center;
  background-position: center;
    background-attachment: fixed; /* Esto asegura que la imagen de fondo permanezca fija mientras el contenido se desplaza */
  background-size: 1275px;
}
  background-repeat: repeat !important;
 
/* Capa oscura superpuesta */
#mw-content {
    position: relative;
    z-index: 1; /* Asegura que el contenido esté sobre la capa oscura */
}
 
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Aquí puedes ajustar el nivel de opacidad (0.5 para 50% de opacidad) */
    z-index: 0;
}
}

Revision as of 01:55, 1 April 2024

@font-face {
font-family: 'CrimsonText' !important; src: url('https://wiki.heystories.com/fonts/CrimsonText-Bold.ttf') format('ttf'), url('url('https://wiki.heystories.com/fonts/CrimsonText-Bold.ttf') ') format('ttf'), url('url('https://wiki.heystories.com/fonts/CrimsonText-Regular.ttf') ') format('ttf');
}
.mw-body,
.mw-headline,
.mw-label,
.mw-input,
.mw-body-content,
.mw-allpages-table-form,
.mw-allpages-nav {
font-family: 'CrimsonText' !important;}

body {
    background-image: url('https://wiki.heystories.com/images/7/74/FondoMonta%C3%B1oso.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Esto asegura que la imagen de fondo permanezca fija mientras el contenido se desplaza */
}

/* Capa oscura superpuesta */
#mw-content {
    position: relative;
    z-index: 1; /* Asegura que el contenido esté sobre la capa oscura */
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Aquí puedes ajustar el nivel de opacidad (0.5 para 50% de opacidad) */
    z-index: 0;
}