Diferencia entre revisiones de «Página principal»

De enunpimpam
Saltar a: navegación, buscar
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"> <br>#home-overlay {<br> background-color: rgba(0, 0, 0, 0.8);<br> width: 100%;<br> height: 100%;<br> position: fixed;<br> top: 0;<br> left: 0;<br> z-index: -1;<br>}<br>#home-content {<br> width: 100%;<br> height: 100%;<br> display: table;<br>}<br>#home-content-inner {<br> display: table-cell;<br> vertical-align: middle;<br>}</pre>
 

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

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