Diferencia entre revisiones de «MediaWiki:Common.css»
De Unión PokéPRO - Wiki
Ir a la navegaciónIr a la búsqueda
Sin resumen de edición Etiqueta: Revertido |
Sin resumen de edición |
||
(No se muestran 52 ediciones intermedias del mismo usuario) | |||
Línea 12: | Línea 12: | ||
.mw-body-content h2, .mw-body-content h3, .mw-body-content h4, .mw-body-content h5 { | .mw-body-content h2, .mw-body-content h3, .mw-body-content h4, .mw-body-content h5 { | ||
font-family: "Arial", sans-serif; | font-family: "Arial", sans-serif; | ||
} | |||
img { | |||
image-rendering: pixelated; | |||
} | } | ||
. | .pokemainimage{ | ||
display: flex !important; | |||
flex-direction: row; | |||
justify-content: center; | |||
} | |||
.mainbody { | |||
display: flex; | |||
flex-direction: column; | |||
} | |||
.pokeinfohead { | |||
display: flex !important; | |||
flex-direction: row; | |||
justify-content: space-between; | |||
} | |||
.pokeinfohead1{ | |||
display: flex; | |||
flex-direction: column; | |||
} | |||
.pokepanel{ | |||
background-color: #D9E4DB; | |||
display: flex; | |||
flex-direction: column; | |||
padding: 6px; | |||
border: 2px; | |||
border-style: solid; | |||
border-color: black; | |||
text-align:center; | |||
} | |||
.stat-container { | |||
background: #ddd; | |||
height: 20px; | |||
border-radius: 4px; | |||
overflow: hidden; | |||
position: relative; | |||
} | |||
.stat-bar { | |||
color: white; | |||
text-align: center; | |||
line-height: 20px; | |||
border-radius: 4px; | |||
height: 100%; | |||
} | |||
.stat-low { | |||
background: #ff5959; /* Rojo para valores bajos (<50) */ | |||
} | |||
.stat-medium { | |||
background: #fae078; /* Amarillo para valores medios (50-79) */ | |||
} | |||
.stat-high { | |||
background: #a7db8d; /* Verde para valores altos (80+) */ | |||
} | } |
Revisión actual - 12:06 29 ene 2025
/* Los estilos CSS colocados aquí se aplicarán a todas las apariencias */ body { font-family: "Arial", sans-serif; } content { font-family: "Arial", sans-serif; } #firstHeading{ font-family: "Arial", sans-serif; } .mw-body-content h2, .mw-body-content h3, .mw-body-content h4, .mw-body-content h5 { font-family: "Arial", sans-serif; } img { image-rendering: pixelated; } .pokemainimage{ display: flex !important; flex-direction: row; justify-content: center; } .mainbody { display: flex; flex-direction: column; } .pokeinfohead { display: flex !important; flex-direction: row; justify-content: space-between; } .pokeinfohead1{ display: flex; flex-direction: column; } .pokepanel{ background-color: #D9E4DB; display: flex; flex-direction: column; padding: 6px; border: 2px; border-style: solid; border-color: black; text-align:center; } .stat-container { background: #ddd; height: 20px; border-radius: 4px; overflow: hidden; position: relative; } .stat-bar { color: white; text-align: center; line-height: 20px; border-radius: 4px; height: 100%; } .stat-low { background: #ff5959; /* Rojo para valores bajos (<50) */ } .stat-medium { background: #fae078; /* Amarillo para valores medios (50-79) */ } .stat-high { background: #a7db8d; /* Verde para valores altos (80+) */ }