Diferencia entre revisiones de «MediaWiki:Common.css»

De SIU
Saltar a: navegación, buscar
Línea 59: Línea 59:
  
 
.links_imagenes {
 
.links_imagenes {
transition: all 1s ease;
+
-webkit-transition: all 1s ease;
 +
    -moz-transition: all 1s ease;
 +
      -o-transition: all 1s ease;
 +
      -ms-transition: all 1s ease;
 +
          transition: all 1s ease;
 
}
 
}
  
 
.links_imagenes:hover {
 
.links_imagenes:hover {
webkit-filter: grayscale(100%);
+
-webkit-filter: grayscale(100%);
 
}
 
}
  

Revisión del 12:50 7 may 2015

/* El CSS colocado en esta página será aplicado a todas las apariencias */
 
@import url(http://fonts.googleapis.com/css?family=Arimo);
@import url(http://fonts.googleapis.com/css?family=Lato);
 
body, .mw-body {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	color: #666666;
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Arimo', sans-serif !important;
	color: #4b9ec9;
}
 
th {
	font-family: 'Arimo', sans-serif !important;
	color: #4b9ec9;
	font-size: 1.2em;
	font-weight: normal;
}
 
a:link,
a:visited,
a:active,
div#mw-panel div.portal div.body ul li a:link,
div#mw-panel div.portal div.body ul li a:visited,
div#mw-panel div.portal div.body ul li a:active {
	color: #4b9ec9 !important;
	text-decoration: none !important;
}
 
a:hover,
div#mw-panel div.portal div.body ul li a:hover {
	color: #666666 !important;
}
 
div#mw-panel div.portal div.body ul li a:link,
div#mw-panel div.portal div.body ul li a:visited,
div#mw-panel div.portal div.body ul li a:active {
	font-size: 13px;
	color: #666666 !important;
}
 
div#mw-panel div.portal div.body ul li a:hover {
	color: #000000 !important;
}
 
div#mw-panel div.portal h3 {
	font-size: 15px;
	color: #4b9ec9;
}
 
.links_imagenes {
	-webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
 
.links_imagenes:hover {
	-webkit-filter: grayscale(100%);
}
 
/* Salto de línea para PRE */
pre {
	white-space: normal;
        font-family: 'Lato', sans-serif;
	font-size: 16px;
	color: #666666;
}