Diferencia entre revisiones de «MediaWiki:Common.css»
De Amereida
| (No se muestran 85 ediciones intermedias de 2 usuarios) | |||
| Línea 1: | Línea 1: | ||
| + | /* === LAYOUT GENERAL === */ | ||
| + | .page-container { | ||
| + | display: flex; | ||
| + | align-items: flex-start; | ||
| + | gap: 2rem; | ||
| + | flex-wrap: wrap; | ||
| + | } | ||
| + | |||
| + | .main-content { | ||
| + | flex: 1; | ||
| + | max-width: 800px; | ||
| + | margin: 0 auto; | ||
| + | } | ||
| + | |||
| + | /* === SUBDIVISIONES MULTICOLUMNA === */ | ||
| + | /* Grilla general */ | ||
| + | .grid { | ||
| + | display: grid; | ||
| + | grid-gap: 1.5em; /* Espaciado uniforme entre filas y columnas */ | ||
| + | grid-template-columns: repeat(2, 1fr); /* Dos columnas por defecto */ | ||
| + | } | ||
| + | |||
| + | .cols-2 { grid-template-columns: 1fr 1fr; } | ||
| + | .cols-3 { grid-template-columns: 1fr 1fr 1fr; } | ||
| + | .cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; } | ||
| + | .cols-5 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; } | ||
| + | .cols-6 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; } | ||
| + | |||
| + | @media (max-width: 600px) { | ||
| + | .grid { | ||
| + | grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */ | ||
| + | } | ||
| + | } | ||
| + | |||
| + | /* Para que los elementos dentro de .columns no se corten */ | ||
| + | .grid > * { | ||
| + | break-inside: avoid; | ||
| + | margin-bottom: 1.5em; | ||
| + | } | ||
| + | |||
| + | /* === LATERAL DE LOGOS === */ | ||
| + | .side-content { | ||
| + | position: sticky; | ||
| + | top: 20px; | ||
| + | width: 140px; | ||
| + | flex-shrink: 0; | ||
| + | } | ||
| + | |||
| + | .logos-flotantes { | ||
| + | display: flex; | ||
| + | flex-direction: column; | ||
| + | gap: 12px; | ||
| + | } | ||
| + | |||
| + | .logo-container { | ||
| + | background: #FFFFFF; | ||
| + | padding: 0.5em; | ||
| + | border-radius: 4px; | ||
| + | border-style: none; | ||
| + | text-align: center; | ||
| + | } | ||
| + | |||
| + | .logo { | ||
| + | max-width: 100%; | ||
| + | height: auto; | ||
| + | } | ||
| + | |||
| + | /* === FICHAS Y FLOTANTES INTERNOS === */ | ||
| + | div.thumb-text { | ||
| + | float: right; | ||
| + | max-width: 320px; | ||
| + | background-color: #FFFFFF; | ||
| + | font-size: 80%; | ||
| + | margin: 0 0 2em 2em; | ||
| + | padding: 0 1em 2em 1em; | ||
| + | line-height: 120%; | ||
| + | break-inside: avoid; | ||
| + | box-sizing: border-box; | ||
| + | } | ||
| + | |||
| + | div.thumb-text .key, | ||
| + | div.thumb-text .value { | ||
| + | display: table-cell; | ||
| + | padding: 0.3ex 1ex; | ||
| + | vertical-align: top; | ||
| + | } | ||
| + | |||
| + | div.thumb-text .img img { | ||
| + | border-radius: 3px; | ||
| + | } | ||
| + | |||
| + | div.thumb-text .title { | ||
| + | font-family: Alegreya, "Times New Roman", Times, serif; | ||
| + | font-size: 110%; | ||
| + | text-align: center; | ||
| + | padding: 1em 0; | ||
| + | } | ||
| + | |||
| + | /* === PREVENCIÓN DE CONFLICTOS CON FLOATS INDESEADOS === */ | ||
| + | .main-content img[align="right"], | ||
| + | .main-content .floatright, | ||
| + | .main-content .thumb.tright { | ||
| + | float: none !important; | ||
| + | display: block; | ||
| + | margin: 1em auto; | ||
| + | } | ||
| + | |||
| + | /* === RESPONSIVE === */ | ||
| + | @media (max-width: 768px) { | ||
| + | .page-container { | ||
| + | flex-direction: column; | ||
| + | } | ||
| + | |||
| + | .main-content { | ||
| + | width: 100%; | ||
| + | max-width: 100%; | ||
| + | padding: 1em; | ||
| + | box-sizing: border-box; | ||
| + | } | ||
| + | |||
| + | .side-content { | ||
| + | position: relative; | ||
| + | width: 100%; | ||
| + | display: flex; | ||
| + | flex-direction: column; | ||
| + | align-items: center; | ||
| + | gap: 12px; | ||
| + | background-color: #FFFFFF; | ||
| + | padding: 1em 0; | ||
| + | } | ||
| + | |||
| + | div.thumb-text { | ||
| + | float: none !important; | ||
| + | max-width: 100% !important; | ||
| + | margin: 0 0 2em 0 !important; | ||
| + | } | ||
| + | |||
| + | .columns, | ||
| + | .columns-sm { | ||
| + | column-count: 1 !important; | ||
| + | column-gap: 0 !important; | ||
| + | } | ||
| + | } | ||
| + | |||
| + | /* === TRANSICIONES SUAVES === */ | ||
| + | .side-content, | ||
| + | .logos-flotantes, | ||
| + | .logo { | ||
| + | transition: all 0.3s ease; | ||
| + | } | ||
| + | |||
| + | /* Pantallas pequeñas */ | ||
| + | @media (max-width: 768px){ | ||
| + | div.thumb-text{ | ||
| + | float: none !important; | ||
| + | max-width: 100% !important; | ||
| + | margin: 0 0 2em 0 !important; | ||
| + | } | ||
| + | div.footerwrap > div.container{ | ||
| + | margin: 0 2em !important; | ||
| + | } | ||
| + | .smwofooterrow nav.navbar ul.navbar-nav{ | ||
| + | text-align: center !important; | ||
| + | } | ||
| + | .smwofooterrow .nav > li, | ||
| + | .smwofooterrow .nav > li > a{ | ||
| + | display: inline-block !important; | ||
| + | } | ||
| + | } | ||
| + | |||
| + | /* Ancho de las páginas */ | ||
| + | |||
| + | .mw-body{ | ||
| + | max-width: 52em; | ||
| + | margin: 0 auto; | ||
| + | } | ||
| + | |||
/* Títulos de páginas */ | /* Títulos de páginas */ | ||
.firstHeading{ | .firstHeading{ | ||
| − | + | font-size: 12px; | |
| − | font- | + | font-family: "Alegreya Sans"; |
| − | font- | + | letter-spacing: .24ex; |
| + | text-transform: uppercase; | ||
| + | font-weight: 600; | ||
| + | } | ||
| + | |||
| + | .poem{ | ||
| + | white-space: pre-wrap; | ||
| + | } | ||
| + | |||
| + | .poem p{ | ||
| + | font: 18px/24px Alegreya,"Times New Roman", Times, serif; | ||
| + | margin: 0; | ||
| + | } | ||
| + | |||
| + | .poem br{display: none} | ||
| + | .rounded{border-radius:4px} | ||
| + | |||
| + | .note{ | ||
| + | font-size: 75%; | ||
| + | margin: 1em 1em 1em 35%; | ||
| + | border: 1px solid #EEE; | ||
| + | border-radius: 4px; | ||
| + | padding: 2em; | ||
} | } | ||
| Línea 15: | Línea 214: | ||
text-align: right; | text-align: right; | ||
padding-right: 1ex; | padding-right: 1ex; | ||
| + | } | ||
| + | |||
| + | label.checkboxLabel { | ||
| + | font-weight: normal; | ||
| + | margin-right: 1em; | ||
} | } | ||
| Línea 33: | Línea 237: | ||
border-radius: 1ex; | border-radius: 1ex; | ||
font-size: 75%; | font-size: 75%; | ||
| + | line-height: 120%; | ||
} | } | ||
| Línea 63: | Línea 268: | ||
margin: 0 0 2em 2em; | margin: 0 0 2em 2em; | ||
padding: 0 1em 2em 1em; | padding: 0 1em 2em 1em; | ||
| − | line-height: | + | line-height: 120%; |
| + | break-inside: avoid | ||
} | } | ||
| Línea 75: | Línea 281: | ||
padding: 0; | padding: 0; | ||
text-align: center; | text-align: center; | ||
| + | margin-bottom: 2ex; | ||
} | } | ||
| + | |||
| + | div.thumb-text div.img img{border-radius:3px} | ||
div.thumb-text div.title{ | div.thumb-text div.title{ | ||
| + | font-family: Alegreya; | ||
font-size: 110%; | font-size: 110%; | ||
| − | |||
text-align: center; | text-align: center; | ||
vertical-align: text-bottom; | vertical-align: text-bottom; | ||
| − | padding: | + | padding: 1em 0 1em 0; |
| + | } | ||
| + | /* resultados multicolumna */ | ||
| + | |||
| + | .columns{ | ||
| + | box-sizing: border-box; | ||
| + | columns: 250px; | ||
| + | column-gap: 20px; | ||
| + | } | ||
| + | |||
| + | .columns-sm{ | ||
| + | box-sizing: border-box; | ||
| + | columns: 110px; | ||
| + | column-gap: 20px; | ||
} | } | ||
/* ficha de acontecer */ | /* ficha de acontecer */ | ||
| + | .event, | ||
.thumb-event{ | .thumb-event{ | ||
background-color: #EFEFE1; | background-color: #EFEFE1; | ||
border-radius: 4px; | border-radius: 4px; | ||
padding: 8px; | padding: 8px; | ||
| + | margin-bottom: 2em; | ||
| + | break-inside: avoid; | ||
} | } | ||
.thumb-event .text{padding: 8px;} | .thumb-event .text{padding: 8px;} | ||
| + | .event .title, | ||
.thumb-event .text .title{ | .thumb-event .text .title{ | ||
| − | + | display: inherit; | |
| − | + | text-transform: uppercase; | |
| + | font-weight: 800; | ||
| + | line-height: 100%; | ||
| + | } | ||
| + | .thumb-event .text .date{ | ||
| + | margin-top: -5px; | ||
| + | display: inherit; | ||
| + | font-style: italic; | ||
| + | font-weight: 100; | ||
| + | } | ||
| + | |||
| + | .thumb-event .text .excerpt{ | ||
| + | font-size: 80%; | ||
| + | line-height: 100%; | ||
} | } | ||
| − | + | ||
| − | |||
div.thumb-text .key, | div.thumb-text .key, | ||
div.thumb-text .value{ | div.thumb-text .value{ | ||
| Línea 104: | Línea 342: | ||
padding: .3ex 1ex; | padding: .3ex 1ex; | ||
vertical-align: top; | vertical-align: top; | ||
| + | } | ||
| + | |||
| + | .event .leyend{padding: 12px;} | ||
| + | |||
| + | .nota{ | ||
| + | width: 50%; | ||
| + | float:right; | ||
| + | font-size: 75%; | ||
| + | padding: 1em; | ||
| + | margin: 0 0 1em 1em; | ||
| + | background-colo: #EEE; | ||
| + | } | ||
| + | |||
| + | |||
| + | /* ficha obra */ | ||
| + | |||
| + | .obra{ | ||
| + | background-color: #EFEFE1; | ||
| + | border-radius: 4px; | ||
| + | padding: 8px; | ||
| + | margin-bottom: 2em; | ||
| + | } | ||
| + | |||
| + | /* ficha documento */ | ||
| + | |||
| + | .thumb-doc > .text{ | ||
| + | text-align:center; | ||
| + | } | ||
| + | .thumb-doc > .text > .title{ | ||
| + | display: block; | ||
| + | line-height: 111%; | ||
| + | font-family: Alegreya; | ||
| + | font-size: 80%; | ||
| + | } | ||
| + | |||
| + | .thumb-doc > .text > .title > a{ | ||
| + | display: block; | ||
| + | border-radius: 3px; | ||
| + | padding: 1ex; | ||
| + | } | ||
| + | |||
| + | .thumb-doc > .text > .title > a:hover{ | ||
| + | background-color: #EFEFE1; | ||
| + | text-decoration: none; | ||
| + | } | ||
| + | |||
| + | /* Image Uploader Wizard fix */ | ||
| + | |||
| + | #mwe-upwiz-steps li { | ||
| + | list-style-image: none; | ||
| + | list-style-type: none; | ||
} | } | ||
Revisión actual del 14:35 1 jul 2025
/* === LAYOUT GENERAL === */
.page-container {
display: flex;
align-items: flex-start;
gap: 2rem;
flex-wrap: wrap;
}
.main-content {
flex: 1;
max-width: 800px;
margin: 0 auto;
}
/* === SUBDIVISIONES MULTICOLUMNA === */
/* Grilla general */
.grid {
display: grid;
grid-gap: 1.5em; /* Espaciado uniforme entre filas y columnas */
grid-template-columns: repeat(2, 1fr); /* Dos columnas por defecto */
}
.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.cols-5 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
.cols-6 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; }
@media (max-width: 600px) {
.grid {
grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
}
}
/* Para que los elementos dentro de .columns no se corten */
.grid > * {
break-inside: avoid;
margin-bottom: 1.5em;
}
/* === LATERAL DE LOGOS === */
.side-content {
position: sticky;
top: 20px;
width: 140px;
flex-shrink: 0;
}
.logos-flotantes {
display: flex;
flex-direction: column;
gap: 12px;
}
.logo-container {
background: #FFFFFF;
padding: 0.5em;
border-radius: 4px;
border-style: none;
text-align: center;
}
.logo {
max-width: 100%;
height: auto;
}
/* === FICHAS Y FLOTANTES INTERNOS === */
div.thumb-text {
float: right;
max-width: 320px;
background-color: #FFFFFF;
font-size: 80%;
margin: 0 0 2em 2em;
padding: 0 1em 2em 1em;
line-height: 120%;
break-inside: avoid;
box-sizing: border-box;
}
div.thumb-text .key,
div.thumb-text .value {
display: table-cell;
padding: 0.3ex 1ex;
vertical-align: top;
}
div.thumb-text .img img {
border-radius: 3px;
}
div.thumb-text .title {
font-family: Alegreya, "Times New Roman", Times, serif;
font-size: 110%;
text-align: center;
padding: 1em 0;
}
/* === PREVENCIÓN DE CONFLICTOS CON FLOATS INDESEADOS === */
.main-content img[align="right"],
.main-content .floatright,
.main-content .thumb.tright {
float: none !important;
display: block;
margin: 1em auto;
}
/* === RESPONSIVE === */
@media (max-width: 768px) {
.page-container {
flex-direction: column;
}
.main-content {
width: 100%;
max-width: 100%;
padding: 1em;
box-sizing: border-box;
}
.side-content {
position: relative;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
background-color: #FFFFFF;
padding: 1em 0;
}
div.thumb-text {
float: none !important;
max-width: 100% !important;
margin: 0 0 2em 0 !important;
}
.columns,
.columns-sm {
column-count: 1 !important;
column-gap: 0 !important;
}
}
/* === TRANSICIONES SUAVES === */
.side-content,
.logos-flotantes,
.logo {
transition: all 0.3s ease;
}
/* Pantallas pequeñas */
@media (max-width: 768px){
div.thumb-text{
float: none !important;
max-width: 100% !important;
margin: 0 0 2em 0 !important;
}
div.footerwrap > div.container{
margin: 0 2em !important;
}
.smwofooterrow nav.navbar ul.navbar-nav{
text-align: center !important;
}
.smwofooterrow .nav > li,
.smwofooterrow .nav > li > a{
display: inline-block !important;
}
}
/* Ancho de las páginas */
.mw-body{
max-width: 52em;
margin: 0 auto;
}
/* Títulos de páginas */
.firstHeading{
font-size: 12px;
font-family: "Alegreya Sans";
letter-spacing: .24ex;
text-transform: uppercase;
font-weight: 600;
}
.poem{
white-space: pre-wrap;
}
.poem p{
font: 18px/24px Alegreya,"Times New Roman", Times, serif;
margin: 0;
}
.poem br{display: none}
.rounded{border-radius:4px}
.note{
font-size: 75%;
margin: 1em 1em 1em 35%;
border: 1px solid #EEE;
border-radius: 4px;
padding: 2em;
}
/* Ajuste de formularios cabeceras de campos en formularios */
table.formtable tr {
border-bottom: 2ex solid transparent;
}
table.formtable tr th{
text-align: right;
padding-right: 1ex;
}
label.checkboxLabel {
font-weight: normal;
margin-right: 1em;
}
.pfAddressInput,
.pfCoordsInput,
.pfLookUpAddress,
.pfUploadable{
padding: 4px 8px;
border: 1px solid rgb(187,187,187);
border-radius: 4px;
}
/* licencias para archivos */
.licence{
padding: 1em 2ex;
border: 1px solid #EEE;
border-radius: 1ex;
font-size: 75%;
line-height: 120%;
}
.licence .image{
float: left;
display: inline-block;
margin-right: 1em;
}
.clearfix {overflow: auto;}
.clearfix::after{
content: "";
clear: both;
display: table;
}
/* color de enlaces a páginas inexistentes */
a.new:link, a.new:hover, a.new:visited{
color: #666;
}
/* ficha de textos */
div.thumb-text{
float: right;
max-width: 320px;
background-color: #EFEFE1;
font-size: 80%;
margin: 0 0 2em 2em;
padding: 0 1em 2em 1em;
line-height: 120%;
break-inside: avoid
}
div.thumb-text .key{
text-align: right;
min-width: 80px;
font-weight: bold;
}
div.thumb-text div.img{
padding: 0;
text-align: center;
margin-bottom: 2ex;
}
div.thumb-text div.img img{border-radius:3px}
div.thumb-text div.title{
font-family: Alegreya;
font-size: 110%;
text-align: center;
vertical-align: text-bottom;
padding: 1em 0 1em 0;
}
/* resultados multicolumna */
.columns{
box-sizing: border-box;
columns: 250px;
column-gap: 20px;
}
.columns-sm{
box-sizing: border-box;
columns: 110px;
column-gap: 20px;
}
/* ficha de acontecer */
.event,
.thumb-event{
background-color: #EFEFE1;
border-radius: 4px;
padding: 8px;
margin-bottom: 2em;
break-inside: avoid;
}
.thumb-event .text{padding: 8px;}
.event .title,
.thumb-event .text .title{
display: inherit;
text-transform: uppercase;
font-weight: 800;
line-height: 100%;
}
.thumb-event .text .date{
margin-top: -5px;
display: inherit;
font-style: italic;
font-weight: 100;
}
.thumb-event .text .excerpt{
font-size: 80%;
line-height: 100%;
}
div.thumb-text .key,
div.thumb-text .value{
display: table-cell;
padding: .3ex 1ex;
vertical-align: top;
}
.event .leyend{padding: 12px;}
.nota{
width: 50%;
float:right;
font-size: 75%;
padding: 1em;
margin: 0 0 1em 1em;
background-colo: #EEE;
}
/* ficha obra */
.obra{
background-color: #EFEFE1;
border-radius: 4px;
padding: 8px;
margin-bottom: 2em;
}
/* ficha documento */
.thumb-doc > .text{
text-align:center;
}
.thumb-doc > .text > .title{
display: block;
line-height: 111%;
font-family: Alegreya;
font-size: 80%;
}
.thumb-doc > .text > .title > a{
display: block;
border-radius: 3px;
padding: 1ex;
}
.thumb-doc > .text > .title > a:hover{
background-color: #EFEFE1;
text-decoration: none;
}
/* Image Uploader Wizard fix */
#mwe-upwiz-steps li {
list-style-image: none;
list-style-type: none;
}