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
Tag: Reverted
No edit summary
Tag: Reverted
Line 58: Line 58:
}
}


/* Estilo para el menú de contenido */
/* Hacer que el menú de contenidos sea transparente */
#toc {
#toc {
     background-color: transparent; /* Fondo transparente */
     background-color: transparent !important;
     border: 1px solid white; /* Contorno blanco */
}
     color: white; /* Texto blanco */
 
/* Añadir un contorno blanco con puntas redondeadas al menú de contenidos */
#toc {
     border: 1px solid white !important;
    border-radius: 10px !important;
}
 
/* Cambiar el color del texto del menú de contenidos a blanco */
#toc,
#toc a {
     color: white !important;
}
}

Revision as of 18:35, 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/a/ae/Estafotodefsl.png') !important;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.vector-feature-zebra-design-disabled .mw-page-container {
    background-color: #000000;
    opacity: 0.9;
    width: 88%;
}

.vector-feature-zebra-design-disabled body {
    color: #FFFFFF;
}

.vector-feature-zebra-design-disabled .vector-header-container {
    background-color: transparent;
    width: 88%;
    height: 100px;
}

/* Cambiar el color de los enlaces a verde */
a {
    color: green;
}

/* Cambiar el color de los enlaces visitados a un tono de verde más oscuro */
a:visited {
    color: darkgreen;
}

/* Cambiar el color de los enlaces al pasar el ratón por encima a un tono de verde claro */
a:hover {
    color: lightgreen;
}

/* Cambiar el color de los enlaces al hacer clic en ellos */
a:active {
    color: forestgreen;
}

.firstHeading {
    color: #FFFFFF;
}

/* Hacer que el menú de contenidos sea transparente */
#toc {
    background-color: transparent !important;
}

/* Añadir un contorno blanco con puntas redondeadas al menú de contenidos */
#toc {
    border: 1px solid white !important;
    border-radius: 10px !important;
}

/* Cambiar el color del texto del menú de contenidos a blanco */
#toc,
#toc a {
    color: white !important;
}