More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* --- Estilo General del Artículo --- */ | /* --- Estilo General del Artículo --- */ | ||
body { | body { | ||
font-family: 'Newsreader', serif; /* | font-family: 'Newsreader', serif; /* Fuente principal del cuerpo del texto */ | ||
background-color: #18181e; /* Fondo oscuro */ | background-color: #18181e; /* Fondo oscuro */ | ||
color: #ffffff; /* Texto blanco */ | color: #ffffff; /* Texto blanco */ | ||
Line 15: | Line 13: | ||
font-family: 'Libre Baskerville', serif; | font-family: 'Libre Baskerville', serif; | ||
font-size: 2.5rem; | font-size: 2.5rem; | ||
font-weight: bold; | |||
color: #ffffff; /* Texto del título en blanco */ | |||
margin-bottom: 20px; | margin-bottom: 20px; | ||
} | } | ||
/* --- Encabezados Secundarios --- */ | /* --- Encabezados Secundarios --- */ | ||
h2 { | .mw-parser-output h2 { | ||
font-family: 'EB Garamond', serif; | font-family: 'EB Garamond', serif; | ||
font-size: 2rem; | font-size: 2rem; | ||
font-weight: bold; | font-weight: bold; | ||
Line 28: | Line 27: | ||
} | } | ||
h3 { | .mw-parser-output h3 { | ||
font-family: 'Ysabeau Infant', serif; | font-family: 'Ysabeau Infant', serif; | ||
font-size: 1.6rem; | font-size: 1.6rem; | ||
font-weight: bold; | font-weight: bold; | ||
Line 36: | Line 35: | ||
} | } | ||
h4 { | .mw-parser-output h4 { | ||
font-family: 'Ysabeau Infant', serif; | font-family: 'Ysabeau Infant', serif; | ||
font-size: 1.4rem; | font-size: 1.4rem; | ||
font-weight: bold; | font-weight: bold; | ||
Line 56: | Line 55: | ||
} | } | ||
/* --- | /* --- Hipervínculos en Artículos --- */ | ||
.mw-parser-output a { | .mw-parser-output a { | ||
text-decoration: none; | text-decoration: none; | ||
color: #ffffff; /* Blanco | color: #ffffff; /* Blanco como el texto normal */ | ||
position: relative; | position: relative; | ||
border-bottom: 4px solid rgba(255, 255, 0, 0.8); /* Raya | border-bottom: 4px solid rgba(255, 255, 0, 0.8); /* Raya amarilla transparente */ | ||
padding-bottom: 2px; /* Ajusta la proximidad de la raya al texto */ | padding-bottom: 2px; /* Ajusta la proximidad de la raya al texto */ | ||
transition: all 0.3s ease-in-out; | transition: all 0.3s ease-in-out; | ||
Line 74: | Line 73: | ||
position: absolute; | position: absolute; | ||
width: 0; | width: 0; | ||
height: 100%; /* Cubre todo el texto | height: 100%; /* Cubre todo el texto */ | ||
background: yellow; | background: yellow; | ||
bottom: 0; | bottom: 0; | ||
left: 0; | left: 0; | ||
z-index: -1; /* | z-index: -1; /* Marcador detrás del texto */ | ||
transition: width 0.4s ease-in-out; | transition: width 0.4s ease-in-out; | ||
} | } | ||
.mw-parser-output a:hover::after { | .mw-parser-output a:hover::after { | ||
width: 100%; /* Marcador | width: 100%; /* Marcador cubre todo el texto al pasar el mouse */ | ||
} | } | ||
/* --- Descripciones de Imágenes --- */ | /* --- Descripciones de Imágenes --- */ | ||
.mw-parser-output . | .mw-parser-output .thumbcaption { | ||
font-family: 'Ysabeau Infant', serif; | font-family: 'Ysabeau Infant', serif; /* Fuente para descripciones de imágenes */ | ||
font-size: 1rem; | font-size: 1rem; | ||
color: #ffffff; | color: #ffffff; | ||
Line 96: | Line 95: | ||
/* --- Referencias y Números de Bibliografía --- */ | /* --- Referencias y Números de Bibliografía --- */ | ||
sup { | .mw-parser-output sup { | ||
font-family: 'Crimson Pro', serif; | font-family: 'Crimson Pro', serif; /* Fuente minimalista */ | ||
font-size: 0.8rem; | font-size: 0.8rem; /* Tamaño pequeño */ | ||
color: #ffffff; /* Blanco */ | color: #ffffff; /* Blanco */ | ||
font-weight: normal; | font-weight: normal; | ||
} | } | ||
sup a { | .mw-parser-output sup a { | ||
text-decoration: none; | text-decoration: none; | ||
color: #ffffff; | color: #ffffff; | ||
border: none; /* Sin subrayado | border: none; /* Sin subrayado */ | ||
} | } | ||
/* --- | /* --- Estilo para Listas --- */ | ||
ul, ol { | .mw-parser-output ul, | ||
.mw-parser-output ol { | |||
margin-left: 20px; | margin-left: 20px; | ||
color: #ffffff; | color: #ffffff; | ||
} | } | ||
li { | .mw-parser-output li { | ||
margin-bottom: 10px; | margin-bottom: 10px; | ||
} | } | ||
/* --- Estilo para Tablas --- */ | /* --- Estilo para Tablas --- */ | ||
table { | .mw-parser-output table { | ||
border-collapse: collapse; | border-collapse: collapse; | ||
width: 100%; | width: 100%; | ||
Line 126: | Line 126: | ||
} | } | ||
th, td { | .mw-parser-output th, | ||
.mw-parser-output td { | |||
border: 1px solid #ffffff; | border: 1px solid #ffffff; | ||
padding: 10px; | padding: 10px; | ||
text-align: left; | text-align: left; | ||
} | } |
Revision as of 00:16, 8 December 2024
/* --- Estilo General del Artículo --- */ body { font-family: 'Newsreader', serif; /* Fuente principal del cuerpo del texto */ background-color: #18181e; /* Fondo oscuro */ color: #ffffff; /* Texto blanco */ line-height: 1.8; margin: 0; padding: 0; } /* --- Título Principal del Artículo --- */ h1.firstHeading { font-family: 'Libre Baskerville', serif; font-size: 2.5rem; font-weight: bold; color: #ffffff; /* Texto del título en blanco */ margin-bottom: 20px; } /* --- Encabezados Secundarios --- */ .mw-parser-output h2 { font-family: 'EB Garamond', serif; font-size: 2rem; font-weight: bold; color: #ffffff; margin-top: 20px; } .mw-parser-output h3 { font-family: 'Ysabeau Infant', serif; font-size: 1.6rem; font-weight: bold; color: #ffffff; margin-top: 20px; } .mw-parser-output h4 { font-family: 'Ysabeau Infant', serif; font-size: 1.4rem; font-weight: bold; color: #ffffff; margin-top: 15px; } /* --- Letra Capital al Inicio del Artículo --- */ .mw-parser-output > p:first-of-type::first-letter { font-size: 4rem; font-family: 'Libre Baskerville', serif; font-weight: bold; color: #ffffff; float: left; line-height: 1; margin-right: 10px; margin-top: 5px; } /* --- Hipervínculos en Artículos --- */ .mw-parser-output a { text-decoration: none; color: #ffffff; /* Blanco como el texto normal */ position: relative; border-bottom: 4px solid rgba(255, 255, 0, 0.8); /* Raya amarilla transparente */ padding-bottom: 2px; /* Ajusta la proximidad de la raya al texto */ transition: all 0.3s ease-in-out; } .mw-parser-output a:hover { color: #18181e; /* El texto se vuelve negro al pasar el mouse */ } .mw-parser-output a::after { content: ''; position: absolute; width: 0; height: 100%; /* Cubre todo el texto */ background: yellow; bottom: 0; left: 0; z-index: -1; /* Marcador detrás del texto */ transition: width 0.4s ease-in-out; } .mw-parser-output a:hover::after { width: 100%; /* Marcador cubre todo el texto al pasar el mouse */ } /* --- Descripciones de Imágenes --- */ .mw-parser-output .thumbcaption { font-family: 'Ysabeau Infant', serif; /* Fuente para descripciones de imágenes */ font-size: 1rem; color: #ffffff; text-align: center; margin-top: 5px; } /* --- Referencias y Números de Bibliografía --- */ .mw-parser-output sup { font-family: 'Crimson Pro', serif; /* Fuente minimalista */ font-size: 0.8rem; /* Tamaño pequeño */ color: #ffffff; /* Blanco */ font-weight: normal; } .mw-parser-output sup a { text-decoration: none; color: #ffffff; border: none; /* Sin subrayado */ } /* --- Estilo para Listas --- */ .mw-parser-output ul, .mw-parser-output ol { margin-left: 20px; color: #ffffff; } .mw-parser-output li { margin-bottom: 10px; } /* --- Estilo para Tablas --- */ .mw-parser-output table { border-collapse: collapse; width: 100%; color: #ffffff; } .mw-parser-output th, .mw-parser-output td { border: 1px solid #ffffff; padding: 10px; text-align: left; }