More actions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* Estilo general para enlaces */ | |||
a, a:link, a:visited { | |||
color: #ffffff; /* Blanco para enlaces sin interactuar */ | |||
text-decoration: underline; | |||
text-decoration-color: #f5ed56; /* Subrayado amarillo */ | |||
text-decoration-thickness: 2px; /* Subrayado ligeramente más grueso */ | |||
} | |||
/* | /* Estilo para los enlaces al pasar el cursor */ | ||
a:hover { | |||
color: #56aaff; /* Azul claro al pasar el cursor */ | |||
text-decoration-color: #56aaff; /* Subrayado coincide con el color del texto */ | |||
} | } | ||
/* | /* Estilo para los bloques de cita */ | ||
blockquote { | |||
font-family: "EB Garamond", serif; | font-family: "EB Garamond", serif; | ||
font- | font-size: 1.2em; /* Un poco más grande que el texto normal */ | ||
color: # | font-style: normal; /* Sin cursiva por defecto */ | ||
border-left: 4px solid #56aaff; /* Línea azul claro en el borde izquierdo */ | |||
padding-left: 1em; | |||
margin-left: 0; | |||
color: #e3e6e4; /* Color del texto */ | |||
background-color: #1c1c28; /* Fondo oscuro consistente */ | |||
border-radius: 8px; /* Bordes suavizados */ | |||
} | } | ||
h3, h4, h5 { | /* Estilo para el pie de página */ | ||
#footer, .mw-footer { | |||
color: #ffffff; | |||
background-color: #1c1c1c; | |||
font-family: "Commissioner", sans-serif; | |||
font-weight: 200; | |||
} | |||
/* Estilo para los títulos principales */ | |||
#firstHeading { | |||
font-family: "Garamond", serif; | |||
font-size: 2.5em; /* Tamaño más grande */ | |||
} | |||
/* Estilo para todos los subtítulos en Abhaya Libre */ | |||
h2, h3, h4, h5 { | |||
font-family: "Abhaya Libre", serif; | font-family: "Abhaya Libre", serif; | ||
font-weight: 700 | font-weight: 700; /* Negrita para destacarlos */ | ||
} | } | ||
/* | /* Estilo para el texto normal de los artículos */ | ||
.mw-body-content { | .mw-body-content { | ||
font-family: "Crimson Text", serif; | font-family: "Crimson Text", serif; | ||
color: # | color: #e3e6e4; | ||
} | } | ||
/* | /* Estilo para Sub-Heading 4 en Commissioner con negrita */ | ||
h6 { | h6 { | ||
font-family: "Commissioner", sans-serif; | font-family: "Commissioner", sans-serif; | ||
font-weight: 700; | font-weight: 700; /* Negrita */ | ||
font-size: | font-size: 3em; | ||
} | } | ||
/* | /* Estilo para los enlaces: subrayado en color #f5ed56 */ | ||
a, a:link, a:visited { | a, a:link, a:visited { | ||
color: inherit; /* | color: inherit; /* El enlace mantiene el mismo color que el texto común */ | ||
text-decoration: underline; | text-decoration: underline; | ||
text-decoration- | text-decoration-color: #f5ed56; /* Subrayado en color #f5ed56 */ | ||
} | } | ||
/* Cambia el color del subrayado de enlaces al pasar el cursor */ | |||
a:hover { | a:hover { | ||
color: # | text-decoration-color: #56aaff; /* Subrayado en azul claro */ | ||
} | } | ||
/* | /* Estilo para el subrayado del texto seleccionado */ | ||
::selection { | ::selection { | ||
background-color: # | background-color: #f5ed56; /* Fondo amarillo al seleccionar texto */ | ||
color: # | color: #1c1c1c; /* Color del texto seleccionado */ | ||
} | } | ||
/* Fondo del | /* Fondo del cuerpo de la página */ | ||
body { | body { | ||
background-color: # | background-color: #1c1c28; | ||
} | } | ||
/* Panel lateral */ | /* Panel lateral de navegación */ | ||
#mw-panel { | #mw-panel { | ||
background-color: | background-color: inherit; | ||
} | } | ||
/* | /* Estilo del botón "ir arriba" */ | ||
#scrollTop { | #scrollTop { | ||
position: fixed; | position: fixed; | ||
bottom: | bottom: 20px; | ||
right: | right: 20px; | ||
width: 50px; | width: 50px; | ||
height: 50px; | height: 50px; | ||
background-color: # | background-color: #56aaff; /* Azul claro */ | ||
color: #ffffff; /* Blanco para la flecha */ | |||
border-radius: 50%; | border-radius: 50%; | ||
display: none; | |||
align-items: center; | |||
justify-content: center; | justify-content: center; | ||
font-size: 24px; | |||
cursor: pointer; | cursor: pointer; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | |||
} | } | ||
/* Efecto hover para el botón "ir arriba" */ | |||
#scrollTop:hover { | #scrollTop:hover { | ||
background-color: # | background-color: #f5ed56; /* Amarillo al pasar el cursor */ | ||
color: #1c1c28; /* Fondo oscuro para la flecha */ | |||
} | } | ||
/* Mostrar el botón cuando se hace scroll */ | |||
#scrollTop { | |||
display: none; | |||
#scrollTop | |||
} | } | ||
Revision as of 19:08, 16 November 2024
/* Estilo general para enlaces */
a, a:link, a:visited {
color: #ffffff; /* Blanco para enlaces sin interactuar */
text-decoration: underline;
text-decoration-color: #f5ed56; /* Subrayado amarillo */
text-decoration-thickness: 2px; /* Subrayado ligeramente más grueso */
}
/* Estilo para los enlaces al pasar el cursor */
a:hover {
color: #56aaff; /* Azul claro al pasar el cursor */
text-decoration-color: #56aaff; /* Subrayado coincide con el color del texto */
}
/* Estilo para los bloques de cita */
blockquote {
font-family: "EB Garamond", serif;
font-size: 1.2em; /* Un poco más grande que el texto normal */
font-style: normal; /* Sin cursiva por defecto */
border-left: 4px solid #56aaff; /* Línea azul claro en el borde izquierdo */
padding-left: 1em;
margin-left: 0;
color: #e3e6e4; /* Color del texto */
background-color: #1c1c28; /* Fondo oscuro consistente */
border-radius: 8px; /* Bordes suavizados */
}
/* Estilo para el pie de página */
#footer, .mw-footer {
color: #ffffff;
background-color: #1c1c1c;
font-family: "Commissioner", sans-serif;
font-weight: 200;
}
/* Estilo para los títulos principales */
#firstHeading {
font-family: "Garamond", serif;
font-size: 2.5em; /* Tamaño más grande */
}
/* Estilo para todos los subtítulos en Abhaya Libre */
h2, h3, h4, h5 {
font-family: "Abhaya Libre", serif;
font-weight: 700; /* Negrita para destacarlos */
}
/* Estilo para el texto normal de los artículos */
.mw-body-content {
font-family: "Crimson Text", serif;
color: #e3e6e4;
}
/* Estilo para Sub-Heading 4 en Commissioner con negrita */
h6 {
font-family: "Commissioner", sans-serif;
font-weight: 700; /* Negrita */
font-size: 3em;
}
/* Estilo para los enlaces: subrayado en color #f5ed56 */
a, a:link, a:visited {
color: inherit; /* El enlace mantiene el mismo color que el texto común */
text-decoration: underline;
text-decoration-color: #f5ed56; /* Subrayado en color #f5ed56 */
}
/* Cambia el color del subrayado de enlaces al pasar el cursor */
a:hover {
text-decoration-color: #56aaff; /* Subrayado en azul claro */
}
/* Estilo para el subrayado del texto seleccionado */
::selection {
background-color: #f5ed56; /* Fondo amarillo al seleccionar texto */
color: #1c1c1c; /* Color del texto seleccionado */
}
/* Fondo del cuerpo de la página */
body {
background-color: #1c1c28;
}
/* Panel lateral de navegación */
#mw-panel {
background-color: inherit;
}
/* Estilo del botón "ir arriba" */
#scrollTop {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
background-color: #56aaff; /* Azul claro */
color: #ffffff; /* Blanco para la flecha */
border-radius: 50%;
display: none;
align-items: center;
justify-content: center;
font-size: 24px;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Efecto hover para el botón "ir arriba" */
#scrollTop:hover {
background-color: #f5ed56; /* Amarillo al pasar el cursor */
color: #1c1c28; /* Fondo oscuro para la flecha */
}
/* Mostrar el botón cuando se hace scroll */
#scrollTop {
display: none;
}