Diferencia entre revisiones de «MediaWiki:Common.css»
Ir a la navegación
Ir a la búsqueda
Sin resumen de edición |
Sin resumen de edición |
||
| Línea 4: | Línea 4: | ||
/* ---- Tablas. ---- */ | /* ---- Tablas. ---- */ | ||
# | #TablaTiraTituloSeccion { | ||
width: 100%; | width: 100%; | ||
background: #f2f5fd; | background: #f2f5fd; | ||
| Línea 16: | Línea 16: | ||
/* ---- Clases de las tablas. ---- */ | /* ---- Clases de las tablas. ---- */ | ||
. | .TablaCabeceraPieDePagina { | ||
width: 100%; | width: 100%; | ||
background: #efefef; | background: #efefef; | ||
border-radius: 10px; | border-radius: 10px; | ||
border-style: solid; | border-style: solid; | ||
| Línea 27: | Línea 26: | ||
} | } | ||
. | .TablaDeContenido { | ||
width: 100%; | width: 100%; | ||
padding: 10px; | padding: 10px; | ||
border-radius: 10px; | |||
border-style: solid; | |||
border-width: 1px; | |||
border-color: grey; | |||
margin-bottom: 10px; | |||
} | } | ||
/* ---- Cajas que son los <div>. ---- */ | |||
/* ---- Cajas | |||
# | #CajaCuerpoPortada { | ||
display: flex; | display: flex; | ||
flex-direction: row; | flex-direction: row; | ||
width: 100%; | |||
margin-top: 10px; | |||
} | } | ||
# | #CajaColumna1 { | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
width: 50%; | |||
margin-right: 5px; | |||
} | } | ||
# | #CajaColumna2 { | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
width: 50%; | |||
margin-left: 5px; | |||
} | } | ||
Revisión del 20:00 14 jul 2025
/* Los estilos CSS colocados aquí se aplicarán a todas las apariencias */
/* ---- Tablas. ---- */
#TablaTiraTituloSeccion {
width: 100%;
background: #f2f5fd;
border-radius: 10px;
padding-left: 10px;
border-style: solid;
border-width: 1px;
border-color: grey;
}
/* ---- Clases de las tablas. ---- */
.TablaCabeceraPieDePagina {
width: 100%;
background: #efefef;
border-radius: 10px;
border-style: solid;
border-width: 1px;
border-color: grey;
padding-left: 10px;
}
.TablaDeContenido {
width: 100%;
padding: 10px;
border-radius: 10px;
border-style: solid;
border-width: 1px;
border-color: grey;
margin-bottom: 10px;
}
/* ---- Cajas que son los <div>. ---- */
#CajaCuerpoPortada {
display: flex;
flex-direction: row;
width: 100%;
margin-top: 10px;
}
#CajaColumna1 {
display: flex;
flex-direction: column;
width: 50%;
margin-right: 5px;
}
#CajaColumna2 {
display: flex;
flex-direction: column;
width: 50%;
margin-left: 5px;
}