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;}


/* Cambia <URL> por la URL de la imagen que deseas usar como fondo */
/* Establecer la imagen de fondo */
body.mediawiki {
body {
     background-image: url("<https://static.vecteezy.com/system/resources/previews/006/696/364/large_2x/panoramic-abstract-decorative-dark-background-wide-angle-rough-stylized-mystic-texture-wallpaper-with-copy-space-for-design-rough-painted-plaster-wall-for-light-blue-background-free-photo.jpg>");
     background-image: url('https://static.vecteezy.com/system/resources/previews/006/696/364/large_2x/panoramic-abstract-decorative-dark-background-wide-angle-rough-stylized-mystic-texture-wallpaper-with-copy-space-for-design-rough-painted-plaster-wall-for-light-blue-background-free-photo.jpg');
     background-color: #f0f0f0; /* Cambia el color de fondo según tus preferencias */
     background-repeat: no-repeat;
     background-size: cover; /* Ajusta el tamaño de la imagen para cubrir todo el fondo */
     background-attachment: fixed;
     background-repeat: no-repeat; /* Evita que la imagen se repita */
     background-size: cover;
     background-attachment: fixed; /* Mantiene la imagen fija mientras se desplaza la página */
}
    /* Puedes ajustar otros estilos según tus necesidades */
 
/* Hacer el cuerpo de la página transparente */
.content {
     background-color: rgba(255, 255, 255, 0.5); /* Blanco semi-transparente */
}
}

Revision as of 00: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;}

/* Establecer la imagen de fondo */
body {
    background-image: url('https://static.vecteezy.com/system/resources/previews/006/696/364/large_2x/panoramic-abstract-decorative-dark-background-wide-angle-rough-stylized-mystic-texture-wallpaper-with-copy-space-for-design-rough-painted-plaster-wall-for-light-blue-background-free-photo.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* Hacer el cuerpo de la página transparente */
.content {
    background-color: rgba(255, 255, 255, 0.5); /* Blanco semi-transparente */
}