Diferencia entre revisiones de «Página principal»
De enunpimpam
Línea 10: | Línea 10: | ||
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Traducir MediaWiki a tu idioma] | * [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Traducir MediaWiki a tu idioma] | ||
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Aprende a combatir el spam en tu wiki] | * [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Aprende a combatir el spam en tu wiki] | ||
− | |||
− | |||
Codigo css | Codigo css | ||
+ | <pre class="brush: css"> | ||
+ | #home-overlay { | ||
+ | background-color: rgba(0, 0, 0, 0.8); | ||
+ | width: 100%; | ||
+ | height: 100%; | ||
+ | position: fixed; | ||
+ | top: 0; | ||
+ | left: 0; | ||
+ | z-index: -1; | ||
+ | } | ||
+ | #home-content { | ||
+ | width: 100%; | ||
+ | height: 100%; | ||
+ | display: table; | ||
+ | } | ||
+ | #home-content-inner { | ||
+ | display: table-cell; | ||
+ | vertical-align: middle; | ||
+ | } | ||
− | + | </pre> | |
− | + | <pre class="brush: css"> #home-overlay { background-color: rgba(0, 0, 0, 0.8); width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: -1;}#home-content { width: 100%; height: 100%; display: table;}#home-content-inner { display: table-cell; vertical-align: middle;} </pre> | |
− | |||
− | <pre class="brush: css" |
Revisión del 23:43 20 abr 2020
MediaWiki se ha instalado.
Consulta la guía para obtener información sobre el uso del software wiki.
Primeros pasos
- Lista de ajustes de configuración
- Preguntas frecuentes sobre MediaWiki
- Lista de correo de anuncios de publicación de MediaWiki
- Traducir MediaWiki a tu idioma
- Aprende a combatir el spam en tu wiki
Codigo css
#home-overlay { background-color: rgba(0, 0, 0, 0.8); width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: -1; } #home-content { width: 100%; height: 100%; display: table; } #home-content-inner { display: table-cell; vertical-align: middle; }
#home-overlay { background-color: rgba(0, 0, 0, 0.8); width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: -1;}#home-content { width: 100%; height: 100%; display: table;}#home-content-inner { display: table-cell; vertical-align: middle;}