More actions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Newsreader:wght@400;700&display=swap" rel="stylesheet"> | <link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&family=EB+Garamond:wght@400;700&family=Libre+Baskerville:wght@400;700&family=Newsreader:wght@400;700&family=Ysabeau+Infant:wght@400;700&display=swap" rel="stylesheet"> | ||
/* Estilo | /* --- Estilo General del Artículo --- */ | ||
body { | body { | ||
font-family: 'Newsreader', serif; | font-family: 'Newsreader', serif; | ||
| Line 11: | Line 11: | ||
} | } | ||
/* | /* --- Título Principal del Artículo --- */ | ||
h1.firstHeading { | h1.firstHeading { | ||
font-family: 'Libre Baskerville', serif; | font-family: 'Libre Baskerville', serif; | ||
| Line 20: | Line 20: | ||
} | } | ||
/* | /* --- Encabezados Secundarios --- */ | ||
h2, h3, h4, h5 { | |||
font-family: 'EB Garamond', serif; | |||
font-weight: bold; | |||
color: #ffffff; | |||
margin-top: 20px; | |||
} | |||
h6 { | |||
font-family: 'Ysabeau Infant', serif; | |||
font-weight: bold; | |||
color: #ffffff; | |||
margin-top: 20px; | |||
} | |||
/* --- Letra Capital al Inicio del Artículo --- */ | |||
.mw-parser-output > p:first-of-type::first-letter { | .mw-parser-output > p:first-of-type::first-letter { | ||
font-size: 4rem; | font-size: 4rem; | ||
| Line 32: | Line 47: | ||
} | } | ||
/* Estilo de | /* --- Estilo de Hipervínculos en Artículos --- */ | ||
a { | .mw-parser-output a { | ||
text-decoration: none; | text-decoration: none; | ||
border-bottom: | color: #ffffff; /* Blanco, igual al resto del texto */ | ||
color: | border-bottom: 6px solid rgba(255, 255, 0, 0.6); /* Raya gruesa y ligeramente transparente */ | ||
transition: | position: relative; | ||
transition: all 0.3s ease-in-out; | |||
} | |||
.mw-parser-output a:hover { | |||
color: #18181e; /* Negro al pasar el mouse */ | |||
} | |||
.mw-parser-output a::after { | |||
content: ''; | |||
position: absolute; | |||
width: 0; | |||
height: 6px; | |||
background: yellow; | |||
bottom: 0; | |||
left: 0; | |||
transition: width 0.3s ease-in-out; | |||
z-index: -1; /* Para que el marcador quede detrás del texto */ | |||
} | |||
.mw-parser-output a:hover::after { | |||
width: 100%; /* Subrayado de izquierda a derecha */ | |||
} | } | ||
/* | /* --- Estilo para Referencias o Números de Bibliografía --- */ | ||
sup { | |||
font-family: 'Crimson Pro', serif; | |||
font-size: 0.8rem; /* Tamaño pequeño pero legible */ | |||
color: #ffffff; /* Blanco */ | |||
font-weight: normal; | |||
} | } | ||
sup a { | |||
text-decoration: none; | |||
color: #ffffff; | color: #ffffff; | ||
border: none; /* Sin subrayado ni efectos en enlaces de referencias */ | |||
} | } | ||
/* Ajustes | /* --- Ajustes Generales para Listas --- */ | ||
ul, ol { | ul, ol { | ||
margin-left: 20px; | margin-left: 20px; | ||
color: #ffffff; | |||
} | } | ||
li { | li { | ||
margin-bottom: 10px; | margin-bottom: 10px; | ||
} | } | ||
/* | /* --- Estilo para Tablas --- */ | ||
table { | table { | ||
border-collapse: collapse; | border-collapse: collapse; | ||
Revision as of 23:07, 7 December 2024
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&family=EB+Garamond:wght@400;700&family=Libre+Baskerville:wght@400;700&family=Newsreader:wght@400;700&family=Ysabeau+Infant:wght@400;700&display=swap" rel="stylesheet">
/* --- Estilo General del Artículo --- */
body {
font-family: 'Newsreader', serif;
background-color: #18181e;
color: #ffffff;
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;
margin-bottom: 20px;
color: #ffffff;
}
/* --- Encabezados Secundarios --- */
h2, h3, h4, h5 {
font-family: 'EB Garamond', serif;
font-weight: bold;
color: #ffffff;
margin-top: 20px;
}
h6 {
font-family: 'Ysabeau Infant', serif;
font-weight: bold;
color: #ffffff;
margin-top: 20px;
}
/* --- 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;
}
/* --- Estilo de Hipervínculos en Artículos --- */
.mw-parser-output a {
text-decoration: none;
color: #ffffff; /* Blanco, igual al resto del texto */
border-bottom: 6px solid rgba(255, 255, 0, 0.6); /* Raya gruesa y ligeramente transparente */
position: relative;
transition: all 0.3s ease-in-out;
}
.mw-parser-output a:hover {
color: #18181e; /* Negro al pasar el mouse */
}
.mw-parser-output a::after {
content: '';
position: absolute;
width: 0;
height: 6px;
background: yellow;
bottom: 0;
left: 0;
transition: width 0.3s ease-in-out;
z-index: -1; /* Para que el marcador quede detrás del texto */
}
.mw-parser-output a:hover::after {
width: 100%; /* Subrayado de izquierda a derecha */
}
/* --- Estilo para Referencias o Números de Bibliografía --- */
sup {
font-family: 'Crimson Pro', serif;
font-size: 0.8rem; /* Tamaño pequeño pero legible */
color: #ffffff; /* Blanco */
font-weight: normal;
}
sup a {
text-decoration: none;
color: #ffffff;
border: none; /* Sin subrayado ni efectos en enlaces de referencias */
}
/* --- Ajustes Generales para Listas --- */
ul, ol {
margin-left: 20px;
color: #ffffff;
}
li {
margin-bottom: 10px;
}
/* --- Estilo para Tablas --- */
table {
border-collapse: collapse;
width: 100%;
color: #ffffff;
}
th, td {
border: 1px solid #ffffff;
padding: 10px;
text-align: left;
}