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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/**
* SciAnimator - Scientific Image Animator Plugin for jQuery
*
* Copyright (c) 2010 Brent Ertz
* Released under the MIT license.
* http://github.com/brentertz/scianimator
*/
/* Comment out @imports for themes not in use */
@import url('scianimator.light.css');
@import url('scianimator.dark.css');
@import url('scianimator.blue.css');
.scianimator {
font-family: 'Lucida Grande', sans-serif;
font-size: 12px;
text-align: center;
margin: auto auto 1em auto;
position: relative;
}
.scianimator .controls,
.scianimator .control {
border: 1px solid;
border-radius: 4px;
-moz-border-radius: 4px;
font-family: 'Lucida Grande', sans-serif;
font-size: 10px;
text-shadow: 0 1px #fff;
margin: 2px;
position: relative;
}
.scianimator .controls {
margin: 0;
padding: 4px;
position: relative;
}
.scianimator a,
.scianimator a:visited {
cursor: pointer;
display: inline-block;
padding: 5px 10px;
text-decoration: none;
}
.scianimator a.small,
.scianimator a:visited.small {
padding: 1px 2px;
}
.scianimator a:active {
top: 1px;
}
.scianimator select.control,
.scianimator label {
margin: 1px;
vertical-align: middle;
}
.scianimator .control.box {
padding: 1px 5px;
display: inline-block;
vertical-align: top;
}
.scianimator .control.box .control {
margin-left: 0;
margin-right: 0;
}
.scianimator .box.control.navigator {
padding: 2px;
}
.scianimator .box a.control.navigator,
.scianimator .box a:hover.control.navigator {
display: inline-block;
height: 10px;
margin: 2px;
padding: 0;
width: 10px;
background: #00FF00;
box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px #00FF00;
-o-box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px #00FF00;
-webkit-box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px #00FF00;
-moz-box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px #00FF00;
}
.scianimator .box a.navigator.disabled,
.scianimator .box a:hover.navigator.disabled {
background: red;
box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px red;
-o-box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px red;
-webkit-box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px red;
-moz-box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px red;
}
.scianimator .box a.navigator.current,
.scianimator .box a:hover.navigator.current {
background: blue;
box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px blue;
-o-box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px blue;
-webkit-box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px blue;
-moz-box-shadow: 0 0 3px 1px #666666 inset, 0 0 1px blue;
}
.scianimator .status {
background: red;
color: #fff;
right: 0;
padding: 5px;
position: absolute;
top: 0;
}
|