1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
/**
* SciAnimator - Scientific Image Animator Plugin for jQuery
*
* Copyright (c) 2010 Brent Ertz
* Released under the MIT license.
* http://github.com/brentertz/scianimator
*/
/* Light theme */
.scianimator.light,
.scianimator.light a,
.scianimator.light a:visited {
color: #555;
}
.scianimator.light {
background: #ddd;
}
.scianimator.light .controls,
.scianimator.light .control {
background-color: #ddd;
border-color: #999;
color: #555;
text-shadow: 0 1px #fff;
}
.scianimator.light .controls {
box-shadow: inset 0 1px 3px #fff, inset 0 -17px #ccc, 0 0 3px #999;
-o-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #ccc, 0 0 3px #999;
-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #ccc, 0 0 3px #999;
-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #ccc, 0 0 3px #999;
}
.scianimator.light .control {
box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #999;
-o-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #999;
-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #999;
-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #999;
}
.scianimator.light a:hover {
box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #555;
-o-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #555;
-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #555;
-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #ccc, 0 0 3px #555;
color: #fff;
text-shadow: 0px 1px #555;
}
|