Diferencia entre revisiones de «Common.css»
(No se muestran 112 ediciones intermedias del mismo usuario) | |||
Línea 1: | Línea 1: | ||
/* El CSS colocado en esta página será aplicado a todas las apariencias */ | /* El CSS colocado en esta página será aplicado a todas las apariencias */ | ||
− | /** | + | /* --- ESCONDER SEARCH BAR --- */ |
− | + | ||
− | + | .top-bar input { display: none; } | |
− | + | .top-bar button { display: none; } | |
− | + | ||
− | + | /* --- FUENTE TIPOGRÁFICA --- */ | |
− | + | ||
− | + | @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Josefin+Sans:ital,wght@0,100;0,300;0,500;1,100;1,300;1,500&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); | |
− | + | ||
− | + | /* Cambia el texto del body a Josefin Sans: */ | |
− | + | ||
+ | body { | ||
+ | font-family: "Josefin+Sans"; | ||
} | } | ||
− | + | ||
− | + | /* Cambia los encabezados a Josefin Sans: */ | |
− | + | #content h1, | |
− | + | #content h2, | |
− | + | #content h3, | |
− | + | #content h4, | |
− | + | #content h5, | |
− | + | #content h6 { | |
+ | font-family: "Josefin+Sans"; | ||
} | } | ||
− | + | ||
− | + | /* Cambia el texto de las tablas a Raleway: */ | |
− | + | ||
− | + | tbody { | |
+ | font-family: "Raleway", sans-serif; | ||
} | } | ||
− | . | + | |
− | + | #headertabs.large.ui-widget { | |
+ | font-family: "Raleway", sans-serif; | ||
} | } | ||
− | . | + | |
− | + | /* Cambia el texto de las pestañas de las tabs de las skin Foreground a Josefin Sans: */ | |
− | + | ||
− | + | .tabs dd > a, .tabs .tab-title > a { | |
− | + | font-family: "Josefin+Sans"; | |
+ | } | ||
+ | |||
+ | /* --- MÁRGENES --- */ | ||
+ | |||
+ | /* Márgenes para tablas */ | ||
+ | |||
+ | div.centered, | ||
+ | table.centered, | ||
+ | ul.centered, | ||
+ | .centered { | ||
+ | margin-left: auto; | ||
+ | margin-right: auto; | ||
+ | } | ||
+ | |||
+ | /* --- CAROUSEL BANNER PORTADA --- */ | ||
+ | |||
+ | /* dfoplayer carousel for Template:Banner | ||
+ | https://www.mediawiki.org/wiki/Snippets/Photo_Slider carousel */ | ||
+ | |||
+ | .jcarousel { | ||
+ | position: relative; | ||
+ | overflow: hidden; | ||
+ | } | ||
+ | |||
+ | .jcarousel-wrapper { | ||
+ | max-width: 1125px; | ||
+ | margin: 0; | ||
+ | position: relative; | ||
+ | } | ||
+ | |||
+ | .jcarousel .jcarousel-list { | ||
+ | width: 20000em; | ||
+ | position: relative; | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | } | ||
+ | |||
+ | .jcarousel .jcarousel-item { | ||
+ | float: left; | ||
+ | } | ||
+ | |||
+ | .jcarousel-item img { | ||
+ | display: block; | ||
+ | max-width: 100%; | ||
+ | height: auto !important; | ||
+ | margin: auto; | ||
+ | } | ||
+ | |||
+ | .jcarousel-item p{ | ||
+ | text-align: center; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-prev, | ||
+ | .jcarousel-control-next { | ||
+ | position: absolute; | ||
+ | top: 45%; | ||
+ | width: 30px; | ||
+ | height: 30px; | ||
+ | text-align: center; | ||
+ | background: #fff; | ||
+ | color: #fff; | ||
+ | text-decoration: none; | ||
+ | text-shadow: 0 0 1px #000; | ||
+ | font: 24px/27px Arial, sans-serif; | ||
+ | -webkit-border-radius: 30px; | ||
+ | -moz-border-radius: 30px; | ||
+ | border-radius: 30px; | ||
+ | -webkit-box-shadow: 0 0 2px #999; | ||
+ | -moz-box-shadow: 0 0 2px #999; | ||
+ | box-shadow: 0 0 2px #999; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-prev { | ||
+ | left: -15px; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-next { | ||
+ | right: -15px; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-prev:hover span, | ||
+ | .jcarousel-control-next:hover span { | ||
+ | display: block; | ||
+ | } | ||
+ | |||
+ | .jcarousel-control-prev.inactive, | ||
+ | .jcarousel-control-next.inactive { | ||
+ | opacity: .5; | ||
+ | cursor: default; | ||
+ | } | ||
+ | |||
+ | .jcarousel-pagination { | ||
+ | position: absolute; | ||
+ | bottom: 10px; | ||
+ | left: 15px; | ||
+ | } | ||
+ | |||
+ | .jcarousel-pagination a { | ||
+ | text-decoration: none; | ||
+ | display: inline-block; | ||
+ | font-size: 11px; | ||
+ | line-height: 14px; | ||
+ | min-width: 14px; | ||
+ | background: #fff; | ||
+ | color: #4E443C; | ||
+ | border-radius: 14px; | ||
+ | padding: 3px; | ||
+ | text-align: center; | ||
+ | margin-right: 2px; | ||
+ | opacity: .75; | ||
+ | } | ||
+ | |||
+ | .jcarousel-pagination a.active { | ||
+ | background: #4E443C; | ||
+ | color: #fff; | ||
+ | opacity: 1; | ||
+ | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75); | ||
} | } |
Revisión actual del 08:02 26 may 2021
/* El CSS colocado en esta página será aplicado a todas las apariencias */
/* --- ESCONDER SEARCH BAR --- */
.top-bar input { display: none; }
.top-bar button { display: none; }
/* --- FUENTE TIPOGRÁFICA --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Josefin+Sans:ital,wght@0,100;0,300;0,500;1,100;1,300;1,500&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/* Cambia el texto del body a Josefin Sans: */
body {
font-family: "Josefin+Sans";
}
/* Cambia los encabezados a Josefin Sans: */
#content h1,
#content h2,
#content h3,
#content h4,
#content h5,
#content h6 {
font-family: "Josefin+Sans";
}
/* Cambia el texto de las tablas a Raleway: */
tbody {
font-family: "Raleway", sans-serif;
}
#headertabs.large.ui-widget {
font-family: "Raleway", sans-serif;
}
/* Cambia el texto de las pestañas de las tabs de las skin Foreground a Josefin Sans: */
.tabs dd > a, .tabs .tab-title > a {
font-family: "Josefin+Sans";
}
/* --- MÁRGENES --- */
/* Márgenes para tablas */
div.centered,
table.centered,
ul.centered,
.centered {
margin-left: auto;
margin-right: auto;
}
/* --- CAROUSEL BANNER PORTADA --- */
/* dfoplayer carousel for Template:Banner
https://www.mediawiki.org/wiki/Snippets/Photo_Slider carousel */
.jcarousel {
position: relative;
overflow: hidden;
}
.jcarousel-wrapper {
max-width: 1125px;
margin: 0;
position: relative;
}
.jcarousel .jcarousel-list {
width: 20000em;
position: relative;
margin: 0;
padding: 0;
}
.jcarousel .jcarousel-item {
float: left;
}
.jcarousel-item img {
display: block;
max-width: 100%;
height: auto !important;
margin: auto;
}
.jcarousel-item p{
text-align: center;
}
.jcarousel-control-prev,
.jcarousel-control-next {
position: absolute;
top: 45%;
width: 30px;
height: 30px;
text-align: center;
background: #fff;
color: #fff;
text-decoration: none;
text-shadow: 0 0 1px #000;
font: 24px/27px Arial, sans-serif;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
-webkit-box-shadow: 0 0 2px #999;
-moz-box-shadow: 0 0 2px #999;
box-shadow: 0 0 2px #999;
}
.jcarousel-control-prev {
left: -15px;
}
.jcarousel-control-next {
right: -15px;
}
.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
display: block;
}
.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
opacity: .5;
cursor: default;
}
.jcarousel-pagination {
position: absolute;
bottom: 10px;
left: 15px;
}
.jcarousel-pagination a {
text-decoration: none;
display: inline-block;
font-size: 11px;
line-height: 14px;
min-width: 14px;
background: #fff;
color: #4E443C;
border-radius: 14px;
padding: 3px;
text-align: center;
margin-right: 2px;
opacity: .75;
}
.jcarousel-pagination a.active {
background: #4E443C;
color: #fff;
opacity: 1;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
}