Diferencia entre revisiones de «Página principal»

De enunpimpam
Saltar a: navegación, buscar
Línea 12: Línea 12:
  
  
 +
 +
Codigo css
  
  
  
Codigo css
 
  
  
<pre class="brush:[code-alias]">
 
#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>
<pre class="brush:[code-alias]"> #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>
 

Revisión del 23:42 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




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